Commit 7cc6daa6 authored by Rich Prohaska's avatar Rich Prohaska

refs #62 fix how tdb_logprint formats XID pairs

parent 50aef9b7
......@@ -1112,7 +1112,7 @@ int toku_logprint_TXNID_PAIR (FILE *outf, FILE *inf, const char *fieldname, stru
TXNID_PAIR v;
int r = toku_fread_TXNID_PAIR(inf, &v, checksum, len);
if (r!=0) return r;
fprintf(outf, " %s=%" PRIu64 "%" PRIu64, fieldname, v.parent_id64, v.child_id64);
fprintf(outf, " %s=%" PRIu64 ",%" PRIu64, fieldname, v.parent_id64, v.child_id64);
return 0;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment