From add3013234945ba5718c880a8e194bb1dbd1e79d Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Mon, 7 Apr 2014 13:24:51 -0700 Subject: [PATCH] Fix the default XDG_DATA_DIRS paths --- Alc/helpers.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Alc/helpers.c b/Alc/helpers.c index 8f6420d1..2845e056 100644 --- a/Alc/helpers.c +++ b/Alc/helpers.c @@ -640,7 +640,7 @@ FILE *OpenDataFile(const char *fname, const char *subdir) } if((str=getenv("XDG_DATA_DIRS")) == NULL || str[0] == '\0') - str = " /usr/local/share/:/usr/share/"; + str = "/usr/local/share/:/usr/share/"; next = str; while((str=next) != NULL && str[0] != '\0') -- 2.11.4.GIT