Style fix: "while (" not "while(".

This commit is contained in:
Robin H. Johnson
2011-01-17 08:42:28 +00:00
parent b1fcf4ce9c
commit 0c93f4df32
3 changed files with 3 additions and 3 deletions

View File

@@ -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