Skip to content

Commit

Permalink
Fix an extra backslash
Browse files Browse the repository at this point in the history
  • Loading branch information
jart committed Nov 14, 2024
1 parent 6dd451b commit 0f01eb7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion llamafile/server/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ main(int argc, char* argv[])
// install security
if (!FLAG_unsecure) {
if (pledge(0, 0)) {
SLOG("warning: this OS doesn't support pledge() security\n");
SLOG("warning: this OS doesn't support pledge() security");
} else if (pledge("stdio anet", 0)) {
perror("pledge");
exit(1);
Expand Down

0 comments on commit 0f01eb7

Please sign in to comment.