1
0
Fork 0
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:
Qball 2025-02-08 19:41:30 +01:00
parent 111f169e13
commit 571f217090

View file

@ -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) {