diff options
| author | Mathias Agopian <mathias@google.com> | 2011-07-11 16:26:18 -0700 |
|---|---|---|
| committer | Mathias Agopian <mathias@google.com> | 2011-07-11 16:26:18 -0700 |
| commit | cf7e3a5984e1709004d3e1138780d60f97f46e75 (patch) | |
| tree | 9c0d9cadab1a2ddc91a56b0a16a23f026c1ccb09 /libs/utils | |
| parent | e544a1dbc9a3a4277ef26f6c7a066e7b443829ec (diff) | |
| download | frameworks_base-cf7e3a5984e1709004d3e1138780d60f97f46e75.zip frameworks_base-cf7e3a5984e1709004d3e1138780d60f97f46e75.tar.gz frameworks_base-cf7e3a5984e1709004d3e1138780d60f97f46e75.tar.bz2 | |
Fix typo in an assert's log
Change-Id: I94883a23a0a92eaf3e4976f942f747a2137499ac
Diffstat (limited to 'libs/utils')
| -rw-r--r-- | libs/utils/VectorImpl.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/utils/VectorImpl.cpp b/libs/utils/VectorImpl.cpp index 289c826..87ae3d5 100644 --- a/libs/utils/VectorImpl.cpp +++ b/libs/utils/VectorImpl.cpp @@ -290,7 +290,7 @@ void VectorImpl::clear() void* VectorImpl::editItemLocation(size_t index) { LOG_ASSERT(index<capacity(), - "[%p] itemLocation: index=%d, capacity=%d, count=%d", + "[%p] editItemLocation: index=%d, capacity=%d, count=%d", this, (int)index, (int)capacity(), (int)mCount); void* buffer = editArrayImpl(); @@ -302,7 +302,7 @@ void* VectorImpl::editItemLocation(size_t index) const void* VectorImpl::itemLocation(size_t index) const { LOG_ASSERT(index<capacity(), - "[%p] editItemLocation: index=%d, capacity=%d, count=%d", + "[%p] itemLocation: index=%d, capacity=%d, count=%d", this, (int)index, (int)capacity(), (int)mCount); const void* buffer = arrayImpl(); |
