diff options
Diffstat (limited to 'coreutils/nohup.c')
-rw-r--r-- | coreutils/nohup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/nohup.c b/coreutils/nohup.c index 86d788683..5dd90adcc 100644 --- a/coreutils/nohup.c +++ b/coreutils/nohup.c @@ -47,7 +47,7 @@ int nohup_main(int argc, char *argv[]) if (temp) fdprintf(2,"Writing to %s\n", home ? home : nohupout); dup2(temp ? 1 : nullfd, 2); close(nullfd); - signal (SIGHUP, SIG_IGN); + signal(SIGHUP, SIG_IGN); // Exec our new program. |