summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2023-05-02 15:41:47 -0400
committerDavid Robillard <d@drobilla.net>2023-05-02 15:41:47 -0400
commitb50503cd1d83c1fadb18a54610515e0e6e6b9429 (patch)
tree628b99c30ec36bddf939f272823eefe236ce78c5
parentc3470a1e057eb0e4f3b9153e2fe9ee9868aa25e3 (diff)
downloadraul-b50503cd1d83c1fadb18a54610515e0e6e6b9429.tar.gz
raul-b50503cd1d83c1fadb18a54610515e0e6e6b9429.tar.bz2
raul-b50503cd1d83c1fadb18a54610515e0e6e6b9429.zip
Replace NULL with nullptr
-rw-r--r--test/build_test.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/build_test.cpp b/test/build_test.cpp
index bcfef64..169c331 100644
--- a/test/build_test.cpp
+++ b/test/build_test.cpp
@@ -45,7 +45,7 @@ main()
#if !defined(_WIN32) && !defined(__EMSCRIPTEN__)
# if !defined(_FORTIFY_SOURCE)
- const char* cmd[] = {"echo", NULL};
+ const char* cmd[] = {"echo", nullptr};
raul::Process::launch(cmd);
# endif