remove debug message

This commit is contained in:
Stefan Frederik 2021-06-15 01:23:17 +02:00
parent e16e54d851
commit b9f4c7aed8
1 changed files with 1 additions and 1 deletions

View File

@ -372,7 +372,7 @@ int check_lib(int what, const char *s)
tcleval(str);
dbg(1, "check_lib(): %s -> %s\n", str, tclresult());
my_snprintf(str, S(str), "regexp {%s} %s", tclresult(), s);
dbg(0, "check_lib(): str=%s\n", str);
dbg(1, "check_lib(): str=%s\n", str);
tcleval(str);
if( tclresult()[0] == '1') found=1;
}