From e249c1590a66b1dbd50817374eb6873fda7a5ef5 Mon Sep 17 00:00:00 2001 From: DarN <82701459+DarNCelsius@users.noreply.github.com> Date: Sat, 8 May 2021 17:13:26 +0200 Subject: [PATCH] Grammar I couldn't help myself. :grin: --- src/common/init.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/init.c b/src/common/init.c index 038112299..aa72cd399 100644 --- a/src/common/init.c +++ b/src/common/init.c @@ -79,7 +79,7 @@ static void initCacheDir(FFstate* state) else if(state->cacheDir.chars[state->cacheDir.length - 1] != '/') ffStrbufAppendC(&state->cacheDir, '/'); - mkdir(state->cacheDir.chars, S_IRWXU | S_IXGRP | S_IRGRP | S_IXOTH | S_IROTH); //I hope everybody has a cache folder but whow knews + mkdir(state->cacheDir.chars, S_IRWXU | S_IXGRP | S_IRGRP | S_IXOTH | S_IROTH); //I hope everybody has a cache folder, but who knows ffStrbufAppendS(&state->cacheDir, "fastfetch/"); mkdir(state->cacheDir.chars, S_IRWXU | S_IRGRP | S_IROTH);