Skip to content

Commit

Permalink
[View] Fix bool to gboolean
Browse files Browse the repository at this point in the history
  • Loading branch information
DaveDavenport committed Feb 8, 2025
1 parent 111f169 commit 571f217
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/helper.c
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 571f217

Please sign in to comment.