diff options
author | kcat <chris.kcat@gmail.com> | 2019-01-07 04:36:50 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-07 04:36:50 -0800 |
commit | 2a7f27ca58f9897be06fe815a46ea76a01734a0b (patch) | |
tree | ca9aa7e99770f175209e50f1f88ed3e9b656c89b /OpenAL32/alExtension.cpp | |
parent | 4d047e2bc166e8155dd9714e53efda09def2b6ef (diff) | |
parent | 0537414bafe80e5e32486672ddce82581fb5e1c3 (diff) |
Merge pull request #260 from ShFil119/impr/nullptr
Use nullptr in cpp files
Diffstat (limited to 'OpenAL32/alExtension.cpp')
-rw-r--r-- | OpenAL32/alExtension.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenAL32/alExtension.cpp b/OpenAL32/alExtension.cpp index fff12e01..aef6f7a4 100644 --- a/OpenAL32/alExtension.cpp +++ b/OpenAL32/alExtension.cpp @@ -47,7 +47,7 @@ AL_API ALboolean AL_APIENTRY alIsExtensionPresent(const ALchar *extName) (ptr[len] == '\0' || isspace(ptr[len]))) return AL_TRUE; - if((ptr=strchr(ptr, ' ')) != NULL) + if((ptr=strchr(ptr, ' ')) != nullptr) { do { ++ptr; |