aboutsummaryrefslogtreecommitdiffstats
path: root/libtests/qutil.cc
diff options
context:
space:
mode:
authorm-holger <m-holger@kubitscheck.org>2023-05-20 13:46:50 +0200
committerm-holger <m-holger@kubitscheck.org>2023-05-20 16:41:36 +0200
commitd0682f0f609e979ba085d93a1a0d8e0559f739bb (patch)
tree53d0ef2d0be8ee1167c8a59f86bda1b3cdba7f53 /libtests/qutil.cc
parente28f4efb00d5040fa71532d76e63aa7ade105c99 (diff)
downloadqpdf-d0682f0f609e979ba085d93a1a0d8e0559f739bb.tar.zst
Use nullptr instead of 0 or NULL
Diffstat (limited to 'libtests/qutil.cc')
-rw-r--r--libtests/qutil.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libtests/qutil.cc b/libtests/qutil.cc
index a6f1282a..be5b6b1b 100644
--- a/libtests/qutil.cc
+++ b/libtests/qutil.cc
@@ -489,7 +489,7 @@ same_file_test()
assert_same_file("qutil.out", "qutil.out", true);
assert_same_file("qutil.out", "other-file", false);
assert_same_file("qutil.out", "", false);
- assert_same_file("qutil.out", 0, false);
+ assert_same_file("qutil.out", nullptr, false);
assert_same_file("", "qutil.out", false);
}