Skip to content

Commit b987c51

Browse files
committed
removed unused gettext
1 parent 6e25c8b commit b987c51

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/webserver.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ static void ignore_sigpipe() {
111111
sig.sa_flags = SA_RESTART;
112112
#endif // SA_INTERRUPTT
113113
if (0 != sigaction(SIGPIPE, &sig, &oldsig)) {
114-
fprintf(stderr, gettext("Failed to install SIGPIPE handler: %s\n"), strerror(errno));
114+
fprintf(stderr, "Failed to install SIGPIPE handler: %s\n", strerror(errno));
115115
}
116116
#endif
117117
}

0 commit comments

Comments
 (0)