summaryrefslogtreecommitdiffstats
path: root/zlib-flate
diff options
context:
space:
mode:
Diffstat (limited to 'zlib-flate')
-rw-r--r--zlib-flate/zlib-flate.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/zlib-flate/zlib-flate.cc b/zlib-flate/zlib-flate.cc
index 8f0f087a..d1311c84 100644
--- a/zlib-flate/zlib-flate.cc
+++ b/zlib-flate/zlib-flate.cc
@@ -9,7 +9,7 @@
#include <cstdlib>
#include <cstring>
-static char const* whoami = 0;
+static char const* whoami = nullptr;
void
usage()
@@ -27,7 +27,7 @@ usage()
int
main(int argc, char* argv[])
{
- if ((whoami = strrchr(argv[0], '/')) == NULL) {
+ if ((whoami = strrchr(argv[0], '/')) == nullptr) {
whoami = argv[0];
} else {
++whoami;