diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2011-01-17 08:41:02 +0000 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2011-01-17 08:41:02 +0000 |
commit | b1fcf4ce9ce1a70c302ad97f9905b966674e7590 (patch) | |
tree | 34f074fb6a7e40a993ddd40d3d426a387d27f5f3 /src/rc/rc.c | |
parent | 6804edfc85c96fbda043ef9dd5d90122165bd32a (diff) |
Style fix: "if (" not "if(".
Diffstat (limited to 'src/rc/rc.c')
-rw-r--r-- | src/rc/rc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rc/rc.c b/src/rc/rc.c index 14be8683..bdda2ef6 100644 --- a/src/rc/rc.c +++ b/src/rc/rc.c @@ -895,12 +895,12 @@ main(int argc, char **argv) case 'S': if (rc_conf_value("rc_sys")) { bootlevel = rc_sys_v2(); - if(bootlevel) + if (bootlevel) printf("%s\n", bootlevel); } else { ewarn("WARNING: rc_sys not defined in rc.conf. Falling back to automatic detection"); bootlevel = rc_sys_v1(); - if(bootlevel) + if (bootlevel) printf("%s\n", bootlevel); } exit(EXIT_SUCCESS); |