We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9245ff5 commit e6fd96fCopy full SHA for e6fd96f
src/makefile.osx
@@ -65,7 +65,7 @@ CFLAGS = -g
65
endif
66
67
# ppc doesn't work because we don't support big-endian
68
-CFLAGS += -Wall -Wextra -Wformat -Wformat-security -Wno-unused-paramter \
+CFLAGS += -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter \
69
$(DEBUGFLAGS) $(DEFS) $(INCLUDEPATHS)
70
71
OBJS= \
src/util.cpp
@@ -819,7 +819,7 @@ boost::filesystem::path GetDefaultDataDir()
819
#ifdef MAC_OSX
820
// Mac
821
pathRet /= "Library/Application Support";
822
- filesystem::create_directory(pathRet);
+ fs::create_directory(pathRet);
823
return pathRet / "Bitcoin";
824
#else
825
// Unix
0 commit comments