Add missing else statement.

This commit is contained in:
Ian Manske
2022-12-29 12:51:00 -05:00
parent 7a5d88270e
commit 90d8677b7a
+1
View File
@@ -701,6 +701,7 @@ static void optionParseColor(const char* key, const char* value, FFstrbuf* buffe
else FF_APPEND_COLOR_CODE_COND(magenta, "35")
else FF_APPEND_COLOR_CODE_COND(cyan, "36")
else FF_APPEND_COLOR_CODE_COND(white, "37")
else
{
ffStrbufAppendC(buffer, *value);
++value;