Skip to content

Commit 6040a46

Browse files
committed
MINI-DUMPER doesn't have a saveset timestamp.
1 parent fdd0531 commit 6040a46

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

dumper.c

+5-2
Original file line numberDiff line numberDiff line change
@@ -440,8 +440,11 @@ read_tape_header (FILE *f, word_t word)
440440
//fprintf (stderr, "006: %012llo format\n", data[0]);
441441

442442
read_asciz (name, &data[3]);
443-
fprintf (stderr, "DUMPER tape #%d, %s, ", right (block[2]), name);
444-
print_timestamp (stderr, data[2]);
443+
fprintf (stderr, "DUMPER tape #%d, %s", right (block[2]), name);
444+
if (format > 0) {
445+
fputs (", ", stderr);
446+
print_timestamp (stderr, data[2]);
447+
}
445448
fputc ('\n', stderr);
446449

447450
return word;

0 commit comments

Comments
 (0)