Skip to content

Commit

Permalink
Build fixes for building on Mac OS.
Browse files Browse the repository at this point in the history
  • Loading branch information
evangreen committed Oct 26, 2016
1 parent 1a0e00b commit 711bd98
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion apps/ck/modules/bundle/bundle.c
Original file line number Diff line number Diff line change
Expand Up @@ -846,7 +846,7 @@ Return Value:
return errno;
}

if (fprintf(File, "\"", Size) < 0) {
if (fprintf(File, "\"") < 0) {
return errno;
}

Expand Down
2 changes: 1 addition & 1 deletion apps/setup/config.c
Original file line number Diff line number Diff line change
Expand Up @@ -859,7 +859,7 @@ Return Value:
if (Status != 0) {
fprintf(stderr,
"Error: Failed to read partition %d configuration.\n",
Index);
(int)Index);

return Status;
}
Expand Down
2 changes: 1 addition & 1 deletion apps/swiss/uos/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ OBJS = $(COMMON_OBJS) \
## Add the login related apps on everything except Mac OS.
##

ifneq ($(uname -s),Darwin)
ifneq ($(shell uname -s),Darwin)
OBJS += $(LOGIN_OBJS)
endif

Expand Down

0 comments on commit 711bd98

Please sign in to comment.