From cb54cd2dac24e128bcf8d235993305359a04d3f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A5rten=20Kongstad?= Date: Wed, 28 Feb 2018 09:52:16 +0100 Subject: [PATCH] ByteBucketArray.h: fix typo Bug: 78815803 Test: builds, boots Change-Id: I93d7ce5255911797d6afdb05caf0cf7dbfdc22b9 --- libs/androidfw/include/androidfw/ByteBucketArray.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/androidfw/include/androidfw/ByteBucketArray.h b/libs/androidfw/include/androidfw/ByteBucketArray.h index d84a207697e96..949c9445b3e8b 100644 --- a/libs/androidfw/include/androidfw/ByteBucketArray.h +++ b/libs/androidfw/include/androidfw/ByteBucketArray.h @@ -60,7 +60,7 @@ class ByteBucketArray { } T& editItemAt(size_t index) { - CHECK(index < size()) << "ByteBucketArray.getOrCreate(index=" << index + CHECK(index < size()) << "ByteBucketArray.editItemAt(index=" << index << ") with size=" << size(); uint8_t bucket_index = static_cast(index) >> 4;