From 3c5dc8a9fa0584ebdeedb65b8c8ff56c5fbc7025 Mon Sep 17 00:00:00 2001 From: Mikko Rasa Date: Sun, 20 Jul 2008 12:24:19 +0000 Subject: [PATCH] Fix a typo in get_user_data_dir --- source/dir.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/dir.cpp b/source/dir.cpp index 9d23a13..612d017 100644 --- a/source/dir.cpp +++ b/source/dir.cpp @@ -141,7 +141,7 @@ Path get_user_data_dir(const string &appname) return Path(datadir)/appname; return "."; #else - return get_home_dir()/("+"+appname); + return get_home_dir()/("."+appname); #endif } -- 2.43.0