mirror of
git://git.musl-libc.org/musl
synced 2025-03-06 20:48:29 +01:00
fix missing newline in herror output
This commit is contained in:
parent
0b06402193
commit
262003ad9d
1 changed files with 1 additions and 1 deletions
|
@ -4,5 +4,5 @@
|
||||||
|
|
||||||
void herror(const char *msg)
|
void herror(const char *msg)
|
||||||
{
|
{
|
||||||
fprintf(stderr, "%s%s%s", msg?msg:"", msg?": ":"", hstrerror(h_errno));
|
fprintf(stderr, "%s%s%s\n", msg?msg:"", msg?": ":"", hstrerror(h_errno));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue