diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-11-21 09:05:31 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-11-21 09:05:31 +0000 |
commit | 2480e3a30a063fb400a0912ddf513dff03ebc641 (patch) | |
tree | 096b33e5fe3488c8858193198c11b0efdf15efe7 /init | |
parent | 1dbd6ff80fe037bf603fb24d9357583a0ede4edf (diff) | |
download | busybox-2480e3a30a063fb400a0912ddf513dff03ebc641.tar.gz |
Fix dangling comma
Diffstat (limited to 'init')
-rw-r--r-- | init/init.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/init/init.c b/init/init.c index 943db5261..8e2368306 100644 --- a/init/init.c +++ b/init/init.c @@ -687,7 +687,7 @@ static void halt_signal(int sig) message(CONSOLE|LOG, #if #cpu(s390) /* Seems the s390 console is Wierd(tm). */ - "The system is halted. You may reboot now.\n", + "The system is halted. You may reboot now.\n" #else /* secondConsole is NULL for a serial console */ "The system is halted. Press %s or turn off power\n", |