diff options
author | Matthew L. Curry <matthew.curry@gmail.com> | 2020-10-13 00:00:06 -0600 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-10-13 13:52:52 +0200 |
commit | 5d5c32cec1e4e59329ab96bbd1f371c7b9d70d75 (patch) | |
tree | cc0236d2b1f9f3d1d2797562a25676d94ac8b0d8 /Shell/main.cpp | |
parent | 93f4388e45e5506c01b8317e7d5989a6f1e313be (diff) | |
download | serenity-5d5c32cec1e4e59329ab96bbd1f371c7b9d70d75.zip |
Style: Remove uses of NULL, substituting nullptr
Diffstat (limited to 'Shell/main.cpp')
-rw-r--r-- | Shell/main.cpp | 2 |
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) { |