Commit f95b5d2a authored by Michael Niedermayer's avatar Michael Niedermayer

cmdutils: cosmetics

requested by multiple people
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 80e5859d
......@@ -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, "~");
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment