Fixed it.

This commit is contained in:
Eric Andersen 1999-10-29 23:12:50 +00:00
parent 7f1acfdb89
commit 04579780b7
2 changed files with 4 additions and 4 deletions

4
init.c
View File

@ -335,10 +335,10 @@ extern int init_main(int argc, char **argv)
const char* const* tty1_commands = shell_commands; const char* const* tty1_commands = shell_commands;
#ifndef DEBUG_INIT #ifndef DEBUG_INIT
char *hello_msg_format = char *hello_msg_format =
"init(%d) started: BusyBox v%s (%s) multi-call binary\r\n"; "init started: BusyBox v%s (%s) multi-call binary\r\n";
#else #else
char *hello_msg_format = char *hello_msg_format =
"init started: BusyBox v%s (%s) multi-call binary\r\n"; "init(%d) started: BusyBox v%s (%s) multi-call binary\r\n";
#endif #endif
const char *no_memory = const char *no_memory =
"Sorry, your computer does not have enough memory.\r\n"; "Sorry, your computer does not have enough memory.\r\n";

View File

@ -335,10 +335,10 @@ extern int init_main(int argc, char **argv)
const char* const* tty1_commands = shell_commands; const char* const* tty1_commands = shell_commands;
#ifndef DEBUG_INIT #ifndef DEBUG_INIT
char *hello_msg_format = char *hello_msg_format =
"init(%d) started: BusyBox v%s (%s) multi-call binary\r\n"; "init started: BusyBox v%s (%s) multi-call binary\r\n";
#else #else
char *hello_msg_format = char *hello_msg_format =
"init started: BusyBox v%s (%s) multi-call binary\r\n"; "init(%d) started: BusyBox v%s (%s) multi-call binary\r\n";
#endif #endif
const char *no_memory = const char *no_memory =
"Sorry, your computer does not have enough memory.\r\n"; "Sorry, your computer does not have enough memory.\r\n";