Skip to content

Commit e6fd96f

Browse files
committed
Fix osx build
1 parent 9245ff5 commit e6fd96f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/makefile.osx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ CFLAGS = -g
6565
endif
6666

6767
# ppc doesn't work because we don't support big-endian
68-
CFLAGS += -Wall -Wextra -Wformat -Wformat-security -Wno-unused-paramter \
68+
CFLAGS += -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter \
6969
$(DEBUGFLAGS) $(DEFS) $(INCLUDEPATHS)
7070

7171
OBJS= \

src/util.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -819,7 +819,7 @@ boost::filesystem::path GetDefaultDataDir()
819819
#ifdef MAC_OSX
820820
// Mac
821821
pathRet /= "Library/Application Support";
822-
filesystem::create_directory(pathRet);
822+
fs::create_directory(pathRet);
823823
return pathRet / "Bitcoin";
824824
#else
825825
// Unix

0 commit comments

Comments
 (0)