1
0
mirror of https://sourceware.org/git/glibc.git synced 2026-01-06 11:51:29 +03:00

support: Typo and formatting fixes

- Add a newline to the end of error messages in transfer().
- Fixed the name of support_subprocess_init().
This commit is contained in:
Siddhesh Poyarekar
2021-03-15 16:00:06 +05:30
parent 4e6db99c66
commit 95c68080a3
2 changed files with 4 additions and 4 deletions

View File

@@ -36,7 +36,7 @@ transfer (const char *what, struct pollfd *pfd, struct xmemstream *stream)
if (ret < 0)
{
support_record_failure ();
printf ("error: reading from subprocess %s: %m", what);
printf ("error: reading from subprocess %s: %m\n", what);
pfd->events = 0;
pfd->revents = 0;
}