diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2011-01-17 08:42:28 +0000 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2011-01-17 08:42:28 +0000 |
commit | 0c93f4df3237a1ef5be0580386d4a4c68e3d8a51 (patch) | |
tree | 02ca7b9c2689e95104f0cb1f60ec8e11fc72a67f /src/rc/start-stop-daemon.c | |
parent | b1fcf4ce9ce1a70c302ad97f9905b966674e7590 (diff) |
Style fix: "while (" not "while(".
Diffstat (limited to 'src/rc/start-stop-daemon.c')
-rw-r--r-- | src/rc/start-stop-daemon.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rc/start-stop-daemon.c b/src/rc/start-stop-daemon.c index 459bcf15..4790060d 100644 --- a/src/rc/start-stop-daemon.c +++ b/src/rc/start-stop-daemon.c @@ -1210,7 +1210,7 @@ start_stop_daemon(int argc, char **argv) /* Clean the environment of any RC_ variables */ env_list = rc_stringlist_new(); i = 0; - while(environ[i]) + while (environ[i]) rc_stringlist_add(env_list, environ[i++]); #ifdef HAVE_PAM |