Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
removed unused gettext
  • Loading branch information
etr committed Mar 8, 2021
commit b987c512a76c37e4fbe7c193eebdc22e88fbc1bd
2 changes: 1 addition & 1 deletion src/webserver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ static void ignore_sigpipe() {
sig.sa_flags = SA_RESTART;
#endif // SA_INTERRUPTT
if (0 != sigaction(SIGPIPE, &sig, &oldsig)) {
fprintf(stderr, gettext("Failed to install SIGPIPE handler: %s\n"), strerror(errno));
fprintf(stderr, "Failed to install SIGPIPE handler: %s\n", strerror(errno));
}
#endif
}
Expand Down