]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
support: Typo and formatting fixes
authorSiddhesh Poyarekar <siddhesh@sourceware.org>
Mon, 15 Mar 2021 10:30:06 +0000 (16:00 +0530)
committerSiddhesh Poyarekar <siddhesh@sourceware.org>
Mon, 15 Mar 2021 14:46:27 +0000 (20:16 +0530)
- Add a newline to the end of error messages in transfer().
- Fixed the name of support_subprocess_init().

support/support_capture_subprocess.c
support/support_subprocess.c

index a7afa0e70b48f6496275ddf61389140f111a52f4..3eb825b9afc0b5e6a60f2ebfd181b473213c4b7e 100644 (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;
         }
index 88489a3357f6aae0f9ed563d46bc811c43bb9db7..838eda96ffd6eb9ab1622f9ab70b5ec655e51350 100644 (file)
@@ -27,7 +27,7 @@
 #include <support/subprocess.h>
 
 static struct support_subprocess
-support_suprocess_init (void)
+support_subprocess_init (void)
 {
   struct support_subprocess result;
 
@@ -48,7 +48,7 @@ support_suprocess_init (void)
 struct support_subprocess
 support_subprocess (void (*callback) (void *), void *closure)
 {
-  struct support_subprocess result = support_suprocess_init ();
+  struct support_subprocess result = support_subprocess_init ();
 
   result.pid = xfork ();
   if (result.pid == 0)
@@ -71,7 +71,7 @@ support_subprocess (void (*callback) (void *), void *closure)
 struct support_subprocess
 support_subprogram (const char *file, char *const argv[])
 {
-  struct support_subprocess result = support_suprocess_init ();
+  struct support_subprocess result = support_subprocess_init ();
 
   posix_spawn_file_actions_t fa;
   /* posix_spawn_file_actions_init does not fail.  */