From 660d9ff55f3f2584d57a947243ec58b130ce401b Mon Sep 17 00:00:00 2001 From: =?utf8?q?Felix=20Paul=20K=C3=BChne?= Date: Thu, 27 Aug 2009 15:09:43 +0200 Subject: [PATCH] compilation fix The actual folders still need to be implemented --- src/config/dirs_macos.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/config/dirs_macos.c b/src/config/dirs_macos.c index 46d3b5e808..0d4a63844b 100644 --- a/src/config/dirs_macos.c +++ b/src/config/dirs_macos.c @@ -43,7 +43,7 @@ const char *config_GetDataDir( void ) #warning FIXME: thread-safety! if( *path == '\0' ) { - snprintf( path, sizeof( path ), "%s" DIR_SEP DIR_SHARE, psz_vlcpath ); + snprintf( path, sizeof( path ), "%s" DIR_SEP "share", psz_vlcpath ); path[sizeof( path ) - 1] = '\0'; } return path; @@ -91,7 +91,7 @@ const char *config_GetConfDir( void ) #warning FIXME: system config is not the same as shared app data... if( *path == '\0' ) { - snprintf( path, sizeof( path ), "%s"DIR_SEP DIR_SHARE, /* FIXME: Duh? */ + snprintf( path, sizeof( path ), "%s" DIR_SEP "share", /* FIXME: Duh? */ psz_vlcpath ); path[sizeof( path ) - 1] = '\0'; } @@ -126,7 +126,7 @@ static char *config_GetHomeDir (void) static char *config_GetAppDir (void) { char *psz_dir; - const char *psz_parent = GetDir (false); + const char *psz_parent = GetDir (); if( asprintf( &psz_dir, "%s/Library/Preferences/VLC", psz_parent ) == -1 ) psz_dir = NULL; -- 2.39.2