mirror of
https://git.tukaani.org/xz.git
synced 2025-04-01 21:30:58 +00:00
Fix missing newlines in xzdec.c.
This commit is contained in:
parent
d64ca34f1b
commit
3e54ecee5c
@ -135,7 +135,7 @@ str_to_uint64(const char *value)
|
||||
uint64_t result = 0;
|
||||
|
||||
if (*value < '0' || *value > '9') {
|
||||
fprintf(stderr, "%s: %s: Not a number", argv0, value);
|
||||
fprintf(stderr, "%s: %s: Not a number\n", argv0, value);
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
|
||||
@ -178,7 +178,7 @@ str_to_uint64(const char *value)
|
||||
}
|
||||
|
||||
if (multiplier == 0) {
|
||||
fprintf(stderr, "%s: %s: Invalid suffix",
|
||||
fprintf(stderr, "%s: %s: Invalid suffix\n",
|
||||
argv0, value);
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
@ -380,7 +380,7 @@ uncompress(lzma_stream *strm, FILE *file, const char *filename)
|
||||
break;
|
||||
}
|
||||
|
||||
fprintf(stderr, "%s: %s: %s", argv0, filename, msg);
|
||||
fprintf(stderr, "%s: %s: %s\n", argv0, filename, msg);
|
||||
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user