summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin H. Johnson <robbat2@gentoo.org>2011-01-17 08:41:02 +0000
committerRobin H. Johnson <robbat2@gentoo.org>2011-01-17 08:41:02 +0000
commitb1fcf4ce9ce1a70c302ad97f9905b966674e7590 (patch)
tree34f074fb6a7e40a993ddd40d3d426a387d27f5f3
parent6804edfc85c96fbda043ef9dd5d90122165bd32a (diff)
downloadopenrc-b1fcf4ce9ce1a70c302ad97f9905b966674e7590.tar.gz
openrc-b1fcf4ce9ce1a70c302ad97f9905b966674e7590.tar.bz2
openrc-b1fcf4ce9ce1a70c302ad97f9905b966674e7590.tar.xz
Style fix: "if (" not "if(".
-rw-r--r--src/librc/librc.c10
-rw-r--r--src/rc/rc-depend.c4
-rw-r--r--src/rc/rc.c4
3 files changed, 9 insertions, 9 deletions
diff --git a/src/librc/librc.c b/src/librc/librc.c
index 8d661b1..a5b0bbd 100644
--- a/src/librc/librc.c
+++ b/src/librc/librc.c
@@ -201,16 +201,16 @@ file_regex(const char *file, const char *regex)
const char *
rc_sys_v2(void)
{
-#define __STRING_SWITCH(x) { char* __string_switch = x; if(false) {}
-#define __STRING_CASE(y) else if(strcmp(__string_switch,y) == 0)
+#define __STRING_SWITCH(x) { char* __string_switch = x; if (false) {}
+#define __STRING_CASE(y) else if (strcmp(__string_switch,y) == 0)
#define __STRING_SWITCH_END() }
char* systype = rc_conf_value("rc_sys");
/* New sys identification code */
- if(systype) {
+ if (systype) {
char* s = systype;
// Convert to uppercase
while(s && *s) {
- if(islower((unsigned char)*s))
+ if (islower((unsigned char)*s))
*s = toupper((unsigned char)*s);
s++;
}
@@ -290,7 +290,7 @@ librc_hidden_def(rc_sys_v1)
const char *
rc_sys(void)
{
- if(rc_conf_value("rc_sys")) {
+ if (rc_conf_value("rc_sys")) {
return rc_sys_v2();
} else {
return rc_sys_v1();
diff --git a/src/rc/rc-depend.c b/src/rc/rc-depend.c
index 50227cc..3d00d1a 100644
--- a/src/rc/rc-depend.c
+++ b/src/rc/rc-depend.c
@@ -177,8 +177,8 @@ rc_depend(int argc, char **argv)
}
}
- if(deptree_file) {
- if(!(deptree = rc_deptree_load_file(deptree_file)))
+ if (deptree_file) {
+ if (!(deptree = rc_deptree_load_file(deptree_file)))
eerrorx("failed to load deptree");
} else {
if (!(deptree = _rc_deptree_load(update, NULL)))
diff --git a/src/rc/rc.c b/src/rc/rc.c
index 14be868..bdda2ef 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);