summaryrefslogtreecommitdiff
path: root/tests/libs/dlopen_testlib_ifunc_variable_impl.cpp
diff options
context:
space:
mode:
authorYi Kong <yikong@google.com>2018-08-02 17:31:13 -0700
committerYi Kong <yikong@google.com>2018-08-02 18:09:44 -0700
commit32bc0fcf69dfccb3726fe572833a38b01179580e (patch)
treeabca656f500087493e0997d5cf38cbcc9ec98eb8 /tests/libs/dlopen_testlib_ifunc_variable_impl.cpp
parent65f82092a17518080178ff7004cc6db362ebfbcd (diff)
Modernize codebase by replacing NULL with nullptr
Fixes -Wzero-as-null-pointer-constant warning. Test: m Bug: 68236239 Change-Id: I5b4123bc6709641315120a191e36cc57541349b2
Diffstat (limited to 'tests/libs/dlopen_testlib_ifunc_variable_impl.cpp')
-rw-r--r--tests/libs/dlopen_testlib_ifunc_variable_impl.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/libs/dlopen_testlib_ifunc_variable_impl.cpp b/tests/libs/dlopen_testlib_ifunc_variable_impl.cpp
index a550fefc3..4b13ebab3 100644
--- a/tests/libs/dlopen_testlib_ifunc_variable_impl.cpp
+++ b/tests/libs/dlopen_testlib_ifunc_variable_impl.cpp
@@ -49,5 +49,5 @@ extern "C" void* is_ctor_called_ifun() {
extern "C" void* foo_ifunc() {
char* choice = getenv("IFUNC_CHOICE");
- return choice == NULL ? &v1 : &v2;
+ return choice == nullptr ? &v1 : &v2;
}