From 8f53d33f29c784d134b9dcb066234bda46f97271 Mon Sep 17 00:00:00 2001 From: Linus Dierheimer Date: Mon, 29 Aug 2022 11:01:29 +0200 Subject: [PATCH] Fix --file option --- src/fastfetch.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fastfetch.c b/src/fastfetch.c index 9133ed53d..e95436257 100644 --- a/src/fastfetch.c +++ b/src/fastfetch.c @@ -909,7 +909,7 @@ static void parseOption(FFinstance* instance, FFdata* data, const char* key, con } else if(strcasecmp(key, "--file") == 0) { - optionCheckString(key, value, &instance->config.logo.source); + optionParseString(key, value, &instance->config.logo.source); instance->config.logo.type = FF_LOGO_TYPE_FILE; } else if(strcasecmp(key, "--raw") == 0)