Style fix: "if (" not "if(".

This commit is contained in:
Robin H. Johnson
2011-01-17 08:41:02 +00:00
parent 6804edfc85
commit b1fcf4ce9c
3 changed files with 9 additions and 9 deletions

View File

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