aboutsummaryrefslogtreecommitdiffstats
path: root/src/core/SkTSearch.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/SkTSearch.cpp')
-rw-r--r--src/core/SkTSearch.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/SkTSearch.cpp b/src/core/SkTSearch.cpp
index 64c70cb311..5b5f139042 100644
--- a/src/core/SkTSearch.cpp
+++ b/src/core/SkTSearch.cpp
@@ -22,7 +22,7 @@ int SkStrSearch(const char*const* base, int count, const char target[],
if (count <= 0)
return ~0;
- SkASSERT(base != NULL);
+ SkASSERT(base != nullptr);
int lo = 0;
int hi = count - 1;