aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/helpers.c
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2014-04-07 13:24:51 -0700
committerChris Robinson <[email protected]>2014-04-07 13:24:51 -0700
commitadd3013234945ba5718c880a8e194bb1dbd1e79d (patch)
tree1a71ac3b8fba910803c860b6296ba61f00dee043 /Alc/helpers.c
parent4f1104125b2ff0db2852e64a4abb696fa89c75cf (diff)
Fix the default XDG_DATA_DIRS paths
Diffstat (limited to 'Alc/helpers.c')
-rw-r--r--Alc/helpers.c2
1 files changed, 1 insertions, 1 deletions
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')