From 9a2687768f7f2db3de1d63575fa69172ec48c1fc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=8E=E9=80=9A=E6=B4=B2?= Date: Mon, 16 Jan 2023 18:23:54 +0800 Subject: [PATCH] FFPlatform: remove extra `/` --- src/util/platform/FFPlatform_unix.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/platform/FFPlatform_unix.c b/src/util/platform/FFPlatform_unix.c index 3d13042fc..393d2290b 100644 --- a/src/util/platform/FFPlatform_unix.c +++ b/src/util/platform/FFPlatform_unix.c @@ -39,7 +39,7 @@ static void getConfigDirs(FFPlatform* platform) ffPlatformPathAddHome(&platform->configDirs, platform, ".config/"); #if defined(__APPLE__) - ffPlatformPathAddHome(&platform->configDirs, platform, "/Library/Preferences/"); + ffPlatformPathAddHome(&platform->configDirs, platform, "Library/Preferences/"); #endif ffPlatformPathAddHome(&platform->configDirs, platform, "");