commit | 32bc0fcf69dfccb3726fe572833a38b01179580e | [log] [tgz] |
---|---|---|
author | Yi Kong <yikong@google.com> | Thu Aug 02 17:31:13 2018 -0700 |
committer | Yi Kong <yikong@google.com> | Thu Aug 02 18:09:44 2018 -0700 |
tree | abca656f500087493e0997d5cf38cbcc9ec98eb8 | |
parent | 65f82092a17518080178ff7004cc6db362ebfbcd [diff] [blame] |
Modernize codebase by replacing NULL with nullptr Fixes -Wzero-as-null-pointer-constant warning. Test: m Bug: 68236239 Change-Id: I5b4123bc6709641315120a191e36cc57541349b2
diff --git a/libc/async_safe/async_safe_log.cpp b/libc/async_safe/async_safe_log.cpp index c6b8b53..5f22c74 100644 --- a/libc/async_safe/async_safe_log.cpp +++ b/libc/async_safe/async_safe_log.cpp
@@ -333,7 +333,7 @@ if (c == 's') { /* string */ str = va_arg(args, const char*); - if (str == NULL) { + if (str == nullptr) { str = "(null)"; } } else if (c == 'c') {