We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6e25c8b commit b987c51Copy full SHA for b987c51
src/webserver.cpp
@@ -111,7 +111,7 @@ static void ignore_sigpipe() {
111
sig.sa_flags = SA_RESTART;
112
#endif // SA_INTERRUPTT
113
if (0 != sigaction(SIGPIPE, &sig, &oldsig)) {
114
- fprintf(stderr, gettext("Failed to install SIGPIPE handler: %s\n"), strerror(errno));
+ fprintf(stderr, "Failed to install SIGPIPE handler: %s\n", strerror(errno));
115
}
116
#endif
117
0 commit comments