diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-06-25 09:53:17 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-06-25 09:53:17 +0000 |
commit | 7049ff8696c3c2a1be0f9901d7e2473568b8f918 (patch) | |
tree | c952ee767508bb76c25d6269a298aa16cad99b82 /debianutils | |
parent | f26e3d2e41cc7d2fabcf5c2e777306c36a8d5868 (diff) | |
download | busybox-w32-7049ff8696c3c2a1be0f9901d7e2473568b8f918.tar.gz busybox-w32-7049ff8696c3c2a1be0f9901d7e2473568b8f918.tar.bz2 busybox-w32-7049ff8696c3c2a1be0f9901d7e2473568b8f918.zip |
whitespace fixes. no code changes
Diffstat (limited to 'debianutils')
-rw-r--r-- | debianutils/start_stop_daemon.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/debianutils/start_stop_daemon.c b/debianutils/start_stop_daemon.c index 6d7e61b42..86ec71016 100644 --- a/debianutils/start_stop_daemon.c +++ b/debianutils/start_stop_daemon.c | |||
@@ -105,11 +105,10 @@ struct globals { | |||
105 | #define pidfile (G.pidfile ) | 105 | #define pidfile (G.pidfile ) |
106 | #define user_id (G.user_id ) | 106 | #define user_id (G.user_id ) |
107 | #define signal_nr (G.signal_nr ) | 107 | #define signal_nr (G.signal_nr ) |
108 | #define INIT_G() \ | 108 | #define INIT_G() do { \ |
109 | do { \ | 109 | user_id = -1; \ |
110 | user_id = -1; \ | 110 | signal_nr = 15; \ |
111 | signal_nr = 15; \ | 111 | } while (0) |
112 | } while (0) | ||
113 | 112 | ||
114 | #ifdef OLDER_VERSION_OF_X | 113 | #ifdef OLDER_VERSION_OF_X |
115 | /* -x,--exec EXECUTABLE | 114 | /* -x,--exec EXECUTABLE |