Fastfetch: rename FFinstance::separator to keyValueSeparator, because it's conflicted against Separator module

This commit is contained in:
李通洲
2023-03-09 16:43:43 +08:00
parent 161c4ac028
commit 4cf130bd07
4 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -1105,7 +1105,7 @@ static void parseOption(FFinstance* instance, FFdata* data, const char* key, con
else if(strcasecmp(key, "-s") == 0 || strcasecmp(key, "--structure") == 0)
optionParseString(key, value, &data->structure);
else if(strcasecmp(key, "--separator") == 0)
optionParseString(key, value, &instance->config.separator);
optionParseString(key, value, &instance->config.keyValueSeparator);
else if(strcasecmp(key, "--color-keys") == 0)
optionParseColor(key, value, &instance->config.colorKeys);
else if(strcasecmp(key, "--color-title") == 0)