[go: up one dir, main page]

Skip to content

Commit

Permalink
strboolcmp(): remove debug message
Browse files Browse the repository at this point in the history
  • Loading branch information
StefanSchippers committed Oct 3, 2023
1 parent d613bcc commit 822910f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/editprop.c
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ int strboolcmp(const char *str, const char *boolean)
else s = -1;
if(s == -1 || b == -1) retval = strcmp(str, boolean);
else retval = (s != b);
dbg(0, "strboolcmp(): str=%s boolean=%s retval=%d\n", str, boolean, retval);
dbg(1, "strboolcmp(): str=%s boolean=%s retval=%d\n", str, boolean, retval);
return retval;
}

Expand Down

0 comments on commit 822910f

Please sign in to comment.