From d0682f0f609e979ba085d93a1a0d8e0559f739bb Mon Sep 17 00:00:00 2001 From: m-holger Date: Sat, 20 May 2023 12:46:50 +0100 Subject: Use nullptr instead of 0 or NULL --- libtests/qutil.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libtests/qutil.cc') 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); } -- cgit v1.2.3-54-g00ecf