Browse code

cmdutils: cosmetics

requested by multiple people

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>

Michael Niedermayer authored on 2013/11/20 07:30:04
Showing 1 changed files
... ...
@@ -1087,19 +1087,19 @@ static void print_buildconf(int flags, int level)
1087 1087
 
1088 1088
     // Change all the ' --' strings to '~--' so that
1089 1089
     // they can be identified as tokens.
1090
-    while( (conflist = strstr(str, " --")) != NULL ) {
1090
+    while ( (conflist = strstr(str, " --")) != NULL ) {
1091 1091
         strncpy(conflist, "~--", 3);
1092 1092
     }
1093 1093
 
1094 1094
     // Compensate for the weirdness this would cause
1095 1095
     // when passing 'pkg-config --static'.
1096
-    while( (remove_tilde = strstr(str, "pkg-config~")) != NULL ) {
1096
+    while ( (remove_tilde = strstr(str, "pkg-config~")) != NULL ) {
1097 1097
         strncpy(remove_tilde, "pkg-config ",11);
1098 1098
     }
1099 1099
 
1100 1100
     splitconf = strtok(str, "~");
1101 1101
     av_log(NULL, level, "\n%sconfiguration:\n",indent);
1102
-    while(splitconf != NULL) {
1102
+    while (splitconf != NULL) {
1103 1103
         av_log(NULL, level, "%s%s%s\n", indent, indent, splitconf);
1104 1104
         splitconf = strtok(NULL, "~");
1105 1105
     }