summaryrefslogtreecommitdiffstats
path: root/runtime/signal_set.h
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/signal_set.h')
-rw-r--r--runtime/signal_set.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/signal_set.h b/runtime/signal_set.h
index 3b89e6e377..c272514f61 100644
--- a/runtime/signal_set.h
+++ b/runtime/signal_set.h
@@ -38,7 +38,7 @@ class SignalSet {
}
void Block() {
- if (sigprocmask(SIG_BLOCK, &set_, NULL) == -1) {
+ if (sigprocmask(SIG_BLOCK, &set_, nullptr) == -1) {
PLOG(FATAL) << "sigprocmask failed";
}
}