- consolidate "Sending SIG%s to all processes"; untested..
   text    data     bss     dec     hex filename
   5379      32       8    5419    152b init/init.o.oorig
   5358      32       8    5398    1516 init/init.o
diff --git a/init/init.c b/init/init.c
index b17ebc2..d072a22 100644
--- a/init/init.c
+++ b/init/init.c
@@ -683,12 +683,12 @@
 	sync();
 
 	/* Send signals to every process _except_ pid 1 */
-	message(CONSOLE | LOG, "Sending SIGTERM to all processes.");
+	message(CONSOLE | LOG, init_sending_format, "TERM");
 	kill(-1, SIGTERM);
 	sleep(1);
 	sync();
 
-	message(CONSOLE | LOG, "Sending SIGKILL to all processes.");
+	message(CONSOLE | LOG, init_sending_format, "KILL");
 	kill(-1, SIGKILL);
 	sleep(1);