Skip to content
Snippets Groups Projects
Commit a8e2de56 authored by Eugine Blikh's avatar Eugine Blikh
Browse files

Fixing bug, that prevents inserting tuples with NUM64 (numbers without LL postfix)

parent bedf75fa
No related branches found
No related tags found
No related merge requests found
......@@ -243,7 +243,7 @@ void tc_print_lua_field(char *data, uint32_t size, char string)
tc_printf("%"PRIu32, *((uint32_t*)data));
break;
case 8:
tc_printf("%"PRIu64, *((uint64_t*)data));
tc_printf("%"PRIu64"LL", *((uint64_t*)data));
break;
default:
_string:
......
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