diff options
Diffstat (limited to 'src/DabMux.cpp')
-rw-r--r-- | src/DabMux.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/DabMux.cpp b/src/DabMux.cpp index aefa701..c962818 100644 --- a/src/DabMux.cpp +++ b/src/DabMux.cpp @@ -189,7 +189,7 @@ int main(int argc, char *argv[]) const int sigs[] = {SIGHUP, SIGQUIT, SIGINT, SIGTERM}; for (int i = 0; i < 4; i++) { - if (sigaction(sigs[i], &sa, NULL) == -1) { + if (sigaction(sigs[i], &sa, nullptr) == -1) { perror("sigaction"); return EXIT_FAILURE; } @@ -399,7 +399,7 @@ int main(int argc, char *argv[]) throw MuxInitException(); } - if (output == NULL) { + if (output == nullptr) { etiLog.level(error) << "Unable to init output " << uri; |