From 2cebb24bfc3247d3e9be138a3350106737455918 Mon Sep 17 00:00:00 2001 From: Mathieu Chartier Date: Tue, 21 Apr 2015 16:50:40 -0700 Subject: Replace NULL with nullptr Also fixed some lines that were too long, and a few other minor details. Change-Id: I6efba5fb6e03eb5d0a300fddb2a75bf8e2f175cb --- runtime/signal_set.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'runtime/signal_set.h') 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"; } } -- cgit v1.2.3