summaryrefslogtreecommitdiff
path: root/cmdutils.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-11-19 23:30:04 +0100
committerMichael Niedermayer <michaelni@gmx.at>2013-11-20 00:23:23 +0100
commitf95b5d2a114e019dd8921ddbce6b5dd71190dc72 (patch)
tree23f856b92e5ef1144fe4a38324f25ba13ca7c0b2 /cmdutils.c
parent80e5859d7a009d05be2458bd157e0ec4ea15f359 (diff)
cmdutils: cosmetics
requested by multiple people Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'cmdutils.c')
-rw-r--r--cmdutils.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/cmdutils.c b/cmdutils.c
index e9545fe080..ed11a5bb05 100644
--- a/cmdutils.c
+++ b/cmdutils.c
@@ -1087,19 +1087,19 @@ static void print_buildconf(int flags, int level)
// Change all the ' --' strings to '~--' so that
// they can be identified as tokens.
- while( (conflist = strstr(str, " --")) != NULL ) {
+ while ( (conflist = strstr(str, " --")) != NULL ) {
strncpy(conflist, "~--", 3);
}
// Compensate for the weirdness this would cause
// when passing 'pkg-config --static'.
- while( (remove_tilde = strstr(str, "pkg-config~")) != NULL ) {
+ while ( (remove_tilde = strstr(str, "pkg-config~")) != NULL ) {
strncpy(remove_tilde, "pkg-config ",11);
}
splitconf = strtok(str, "~");
av_log(NULL, level, "\n%sconfiguration:\n",indent);
- while(splitconf != NULL) {
+ while (splitconf != NULL) {
av_log(NULL, level, "%s%s%s\n", indent, indent, splitconf);
splitconf = strtok(NULL, "~");
}