Skip to content
Snippets Groups Projects
Commit 1042c84d authored by Dmitry Simonenko's avatar Dmitry Simonenko
Browse files

Merge branch 'stable'

parents 68332efd 9d266f9f
No related branches found
No related tags found
No related merge requests found
......@@ -112,9 +112,10 @@ static void tc_print_fields(struct tnt_tuple *tu) {
default:
while (size-- > 0) {
if (0x20 <= *data && *data < 0x7f)
tc_printf("%c", *data++);
tc_printf("%c", *data);
else
tc_printf("\\0x%02X", *data++);
tc_printf("\\x%2X", (unsigned char)*data);
data++;
}
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment