diff options
| author | 2019-03-24 23:05:10 +0000 | |
|---|---|---|
| committer | 2019-03-24 23:05:10 +0000 | |
| commit | c3c470fc7ff70cf1012e165a8dfd2bc75094df91 (patch) | |
| tree | 29e2ff547871398f41d221e36efc34e0d3ca947b /libs/ui/Region.cpp | |
| parent | 2a05ffcb8f4d6679cbb6f660836153cc05fbb654 (diff) | |
| parent | 48d7608aa5806192f18e2d572f56a6bc6a10a47c (diff) | |
Merge "[libs/ui] Modernize codebase by replacing NULL with nullptr"
Diffstat (limited to 'libs/ui/Region.cpp')
| -rw-r--r-- | libs/ui/Region.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/libs/ui/Region.cpp b/libs/ui/Region.cpp index 3bd3748439..224dc2c122 100644 --- a/libs/ui/Region.cpp +++ b/libs/ui/Region.cpp @@ -820,7 +820,7 @@ status_t Region::unflatten(void const* buffer, size_t size) {      }      if (numRects > (UINT32_MAX / sizeof(Rect))) { -        android_errorWriteWithInfoLog(0x534e4554, "29983260", -1, NULL, 0); +        android_errorWriteWithInfoLog(0x534e4554, "29983260", -1, nullptr, 0);          return NO_MEMORY;      } |