mirror of
https://git.tukaani.org/xz.git
synced 2024-04-04 12:36:23 +02:00
Fix missing newlines in xzdec.c.
This commit is contained in:
parent
d64ca34f1b
commit
3e54ecee5c
1 changed files with 3 additions and 3 deletions
|
@ -135,7 +135,7 @@ str_to_uint64(const char *value)
|
||||||
uint64_t result = 0;
|
uint64_t result = 0;
|
||||||
|
|
||||||
if (*value < '0' || *value > '9') {
|
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);
|
exit(EXIT_FAILURE);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -178,7 +178,7 @@ str_to_uint64(const char *value)
|
||||||
}
|
}
|
||||||
|
|
||||||
if (multiplier == 0) {
|
if (multiplier == 0) {
|
||||||
fprintf(stderr, "%s: %s: Invalid suffix",
|
fprintf(stderr, "%s: %s: Invalid suffix\n",
|
||||||
argv0, value);
|
argv0, value);
|
||||||
exit(EXIT_FAILURE);
|
exit(EXIT_FAILURE);
|
||||||
}
|
}
|
||||||
|
@ -380,7 +380,7 @@ uncompress(lzma_stream *strm, FILE *file, const char *filename)
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
fprintf(stderr, "%s: %s: %s", argv0, filename, msg);
|
fprintf(stderr, "%s: %s: %s\n", argv0, filename, msg);
|
||||||
|
|
||||||
exit(EXIT_FAILURE);
|
exit(EXIT_FAILURE);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue