*: use nullptr instead of NULL

This commit is contained in:
Max Kellermann
2020-02-01 13:49:19 +01:00
parent 398281cd76
commit 540919f256
17 changed files with 32 additions and 32 deletions

View File

@@ -42,7 +42,7 @@ HandleShutdownSignal(void *ctx) noexcept
static void
x_sigaction(int signum, const struct sigaction *act)
{
if (sigaction(signum, act, NULL) < 0)
if (sigaction(signum, act, nullptr) < 0)
throw MakeErrno("sigaction() failed");
}