aboutsummaryrefslogtreecommitdiff
path: root/src/util.cpp
diff options
context:
space:
mode:
authorGavin Andresen <[email protected]>2012-04-12 11:14:46 -0400
committerGavin Andresen <[email protected]>2012-04-12 11:14:46 -0400
commit940e22fd81af29dee6c07e413de1b446a21712b0 (patch)
tree2ff1ad0c6e212fe1e09a9022ef68fb76768c75bc /src/util.cpp
parentMerge pull request #855 from sje397/ToggleHide (diff)
downloaddiscoin-940e22fd81af29dee6c07e413de1b446a21712b0.tar.xz
discoin-940e22fd81af29dee6c07e413de1b446a21712b0.zip
Fix OSX build errors.
Diffstat (limited to 'src/util.cpp')
-rw-r--r--src/util.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util.cpp b/src/util.cpp
index 91f1810ea..5579a0935 100644
--- a/src/util.cpp
+++ b/src/util.cpp
@@ -805,7 +805,7 @@ boost::filesystem::path GetDefaultDataDir()
pathRet = fs::path(pszHome);
#ifdef MAC_OSX
// Mac
- pathRet /= "Library" / "Application Support";
+ pathRet /= "Library/Application Support";
filesystem::create_directory(pathRet);
return pathRet / "Bitcoin";
#else