diff options
| author | 2020-11-16 02:52:51 +0000 | |
|---|---|---|
| committer | 2020-11-16 02:54:12 +0000 | |
| commit | e6124d98b11b783cd5e742bd6209130b94fe6054 (patch) | |
| tree | 19e03478a5209bd0d2f4991159a8402222bf6a8b /libs/ui/Gralloc4.cpp | |
| parent | 3eb20f80a57e66dfeca62d47e6a43f9e3e4b5e6a (diff) | |
Gralloc4: fix a log message typo
Test: build
Change-Id: I9fb0653f0dff04f27111117d2fb01dffc8473ebe
Diffstat (limited to 'libs/ui/Gralloc4.cpp')
| -rw-r--r-- | libs/ui/Gralloc4.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/ui/Gralloc4.cpp b/libs/ui/Gralloc4.cpp index f799ce4cb0..636fbde8d7 100644 --- a/libs/ui/Gralloc4.cpp +++ b/libs/ui/Gralloc4.cpp @@ -1052,7 +1052,7 @@ std::string Gralloc4Mapper::dumpBuffers(bool less) const { Gralloc4Allocator::Gralloc4Allocator(const Gralloc4Mapper& mapper) : mMapper(mapper) { mAllocator = IAllocator::getService(); if (mAllocator == nullptr) { - ALOGW("allocator 3.x is not supported"); + ALOGW("allocator 4.x is not supported"); return; } } |