Commit ed232193 authored by marko's avatar marko

branches/zip: rec_print_old(), rec_print_comp(): Dump each field in a

separate line, so that the dumps can be read and compared more easily.
parent 6bdab319
......@@ -1599,11 +1599,11 @@ rec_print_old(
fprintf(file, " SQL NULL, size %lu ",
rec_get_nth_field_size(rec, i));
}
putc(';', file);
putc('\n', file);
}
putc('\n', file);
rec_validate_old(rec);
}
......@@ -1642,9 +1642,8 @@ rec_print_comp(
fputs(" SQL NULL", file);
}
putc(';', file);
putc('\n', file);
}
putc('\n', file);
}
/*******************************************************************
......
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