strboolcmp(): remove debug message

This commit is contained in:
stefan schippers 2023-10-03 20:46:18 +02:00
parent d613bcc47a
commit 822910fce7
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}