diff options
author | Denis Vlasenko | 2006-10-20 13:28:22 +0000 |
---|---|---|
committer | Denis Vlasenko | 2006-10-20 13:28:22 +0000 |
commit | e1a0d486e4804eae098571f1a6788394c2ee51ae (patch) | |
tree | c6f3435738900c8d53832eb919b1b2c3d524f2e5 /coreutils/nohup.c | |
parent | dd2982882bb192ea757f32514bc2ea0bc96f5ba0 (diff) | |
download | busybox-e1a0d486e4804eae098571f1a6788394c2ee51ae.zip busybox-e1a0d486e4804eae098571f1a6788394c2ee51ae.tar.gz |
message string changes, mostly for consistency, also -32 bytes in .rodata
Diffstat (limited to 'coreutils/nohup.c')
-rw-r--r-- | coreutils/nohup.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/coreutils/nohup.c b/coreutils/nohup.c index 439fbb1..21adfc1 100644 --- a/coreutils/nohup.c +++ b/coreutils/nohup.c @@ -42,12 +42,12 @@ int nohup_main(int argc, char **argv) * Else redirect to /dev/null. */ temp = isatty(STDERR_FILENO); - if (temp) bb_error_msg("Appending to %s", nohupout); + if (temp) bb_error_msg("appending to %s", nohupout); dup2(temp ? STDOUT_FILENO : nullfd, STDERR_FILENO); close(nullfd); signal (SIGHUP, SIG_IGN); execvp(argv[1],argv+1); if (00 && ENABLE_FEATURE_CLEAN_UP && home) free(nohupout); - bb_perror_msg_and_die("%s",argv[1]); + bb_perror_msg_and_die("%s", argv[1]); } |