mirror of
https://github.com/davatorium/rofi.git
synced 2025-04-14 17:43:01 -04:00
[View] Fix bool to gboolean
This commit is contained in:
parent
111f169e13
commit
571f217090
1 changed files with 1 additions and 1 deletions
|
@ -696,7 +696,7 @@ int config_sanity_check(void) {
|
|||
int index = 0;
|
||||
if (strv) {
|
||||
for (char **str = strv; *str && index < MM_NUM_MATCHERS; str++) {
|
||||
bool found = FALSE;
|
||||
gboolean found = FALSE;
|
||||
for (unsigned i = 0; i < MM_NUM_MATCHERS && index < MM_NUM_MATCHERS;
|
||||
i++) {
|
||||
if (g_ascii_strcasecmp(*str, MatchingMethodStr[i]) == 0) {
|
||||
|
|
Loading…
Add table
Reference in a new issue