summary refs log tree commit diff
path: root/util.c
diff options
context:
space:
mode:
authoroga <oga>2008-05-15 22:18:00 +0000
committeroga <oga>2008-05-15 22:18:00 +0000
commit5034a77849c3a0ed91b67d1de65f063c9056cbc7 (patch)
treec91c89a750d267bdd603a86f14323fd420cf6c80 /util.c
parentec77265b87ceb612df9d02cdf0336cdf77d3099d (diff)
downloadcwm-5034a77849c3a0ed91b67d1de65f063c9056cbc7.tar.gz
cwm-5034a77849c3a0ed91b67d1de65f063c9056cbc7.tar.xz
cwm-5034a77849c3a0ed91b67d1de65f063c9056cbc7.zip
KNF, no binary change.
From Pierre Riteau. Thanks!
Diffstat (limited to 'util.c')
-rw-r--r--util.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/util.c b/util.c
index 7e941c6..f7ef353 100644
--- a/util.c
+++ b/util.c
@@ -49,9 +49,9 @@ u_exec(char *argstr)
 	char *tmp;
 
 	while (ap < end && (*ap = strsep(&argstr, " \t")) != NULL) {
-		if(**ap == '\0')
+		if (**ap == '\0')
 			continue;
- 		ap++;
+		ap++;
 		if (argstr != NULL) {
 			/* deal with quoted strings */
 			switch(argstr[0]) {