Skip to content
Snippets Groups Projects

utils/cache_gc: fix debug prints

Merged Vladimír Čunát requested to merge gc-debug-print into master
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
+ 1
1
@@ -128,7 +128,7 @@ void debug_printbin(const char *str, unsigned int len)
if (isprint(c))
putchar(c);
else
printf("`%02x`", c);
printf("`%02hhx`", c);
}
putchar('"');
}
Loading