aboutsummaryrefslogtreecommitdiffstats
path: root/doc/src/snippets/code/doc_src_unix-signal-handlers.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'doc/src/snippets/code/doc_src_unix-signal-handlers.cpp')
-rw-r--r--doc/src/snippets/code/doc_src_unix-signal-handlers.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/src/snippets/code/doc_src_unix-signal-handlers.cpp b/doc/src/snippets/code/doc_src_unix-signal-handlers.cpp
index 4af0116c8..4007518d1 100644
--- a/doc/src/snippets/code/doc_src_unix-signal-handlers.cpp
+++ b/doc/src/snippets/code/doc_src_unix-signal-handlers.cpp
@@ -95,14 +95,14 @@ static int setup_unix_signal_handlers()
hup.sa_flags = 0;
hup.sa_flags |= SA_RESTART;
- if (sigaction(SIGHUP, &hup, 0) > 0)
+ if (sigaction(SIGHUP, &hup, 0))
return 1;
term.sa_handler = MyDaemon::termSignalHandler;
sigemptyset(&term.sa_mask);
term.sa_flags |= SA_RESTART;
- if (sigaction(SIGTERM, &term, 0) > 0)
+ if (sigaction(SIGTERM, &term, 0))
return 2;
return 0;