Browse Source

- exec_comm_child can not return ever

Bernhard Reutner-Fischer 15 years ago
parent
commit
531728a58a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      libc/misc/wordexp/wordexp.c

+ 1 - 1
libc/misc/wordexp/wordexp.c

@@ -784,7 +784,7 @@ parse_arith(char **word, size_t * word_length, size_t * max_length,
 }
 
 /* Function called by child process in exec_comm() */
-static void
+static void attribute_noreturn
 exec_comm_child(char *comm, int *fildes, int showerr, int noexec)
 {
 	const char *args[4] = { _PATH_BSHELL, "-c", comm, NULL };