summaryrefslogtreecommitdiff
path: root/Shell/main.cpp
diff options
context:
space:
mode:
authorMatthew L. Curry <matthew.curry@gmail.com>2020-10-13 00:00:06 -0600
committerAndreas Kling <kling@serenityos.org>2020-10-13 13:52:52 +0200
commit5d5c32cec1e4e59329ab96bbd1f371c7b9d70d75 (patch)
treecc0236d2b1f9f3d1d2797562a25676d94ac8b0d8 /Shell/main.cpp
parent93f4388e45e5506c01b8317e7d5989a6f1e313be (diff)
downloadserenity-5d5c32cec1e4e59329ab96bbd1f371c7b9d70d75.zip
Style: Remove uses of NULL, substituting nullptr
Diffstat (limited to 'Shell/main.cpp')
-rw-r--r--Shell/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Shell/main.cpp b/Shell/main.cpp
index cf1dfddf1b..4ab4805a5b 100644
--- a/Shell/main.cpp
+++ b/Shell/main.cpp
@@ -72,7 +72,7 @@ int main(int argc, char** argv)
sigemptyset(&blocked);
sigaddset(&blocked, SIGTTOU);
sigaddset(&blocked, SIGTTIN);
- pthread_sigmask(SIG_BLOCK, &blocked, NULL);
+ pthread_sigmask(SIG_BLOCK, &blocked, nullptr);
#endif
#ifdef __serenity__
if (pledge("stdio rpath wpath cpath proc exec tty accept sigaction unix fattr", nullptr) < 0) {