diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2006-05-31 18:57:56 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2006-05-31 18:57:56 +0000 |
commit | 9a5686b605a4dfe2f24660940e309bb444fe5f3f (patch) | |
tree | d46b2ed5c48539e4c10b55aeb8ef2a3d947799b6 /init | |
parent | dac033e98c2e552818fca413528d1f6615ef0be8 (diff) | |
download | busybox-w32-9a5686b605a4dfe2f24660940e309bb444fe5f3f.tar.gz busybox-w32-9a5686b605a4dfe2f24660940e309bb444fe5f3f.tar.bz2 busybox-w32-9a5686b605a4dfe2f24660940e309bb444fe5f3f.zip |
- fix IMA compile error i introduced when adding this untested snippet.
Diffstat (limited to 'init')
-rw-r--r-- | init/init_shared.c | 1 | ||||
-rw-r--r-- | init/init_shared.h | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/init/init_shared.c b/init/init_shared.c index 190d0a33e..722d57c6f 100644 --- a/init/init_shared.c +++ b/init/init_shared.c | |||
@@ -17,6 +17,7 @@ | |||
17 | #include "busybox.h" | 17 | #include "busybox.h" |
18 | #include "init_shared.h" | 18 | #include "init_shared.h" |
19 | 19 | ||
20 | const char * const init_sending_format = "Sending SIG%s to all processes."; | ||
20 | #ifndef CONFIG_INIT | 21 | #ifndef CONFIG_INIT |
21 | const char * const bb_shutdown_format = "\r%s\n"; | 22 | const char * const bb_shutdown_format = "\r%s\n"; |
22 | int bb_shutdown_system(unsigned long magic) | 23 | int bb_shutdown_system(unsigned long magic) |
diff --git a/init/init_shared.h b/init/init_shared.h index 4431a0324..0f3fe5b48 100644 --- a/init/init_shared.h +++ b/init/init_shared.h | |||
@@ -1,4 +1,4 @@ | |||
1 | extern int kill_init(int sig); | 1 | extern int kill_init(int sig); |
2 | extern int bb_shutdown_system(unsigned long magic); | 2 | extern int bb_shutdown_system(unsigned long magic); |
3 | const char * const init_sending_format = "Sending SIG%s to all processes."; | 3 | extern const char * const init_sending_format; |
4 | 4 | ||