summaryrefslogtreecommitdiffstats
path: root/libdex/DexSwapVerify.cpp
diff options
context:
space:
mode:
authorBrian Carlstrom <bdc@google.com>2013-05-03 17:31:16 -0700
committerBrian Carlstrom <bdc@google.com>2013-05-03 17:31:16 -0700
commitdc7f63d94a9abf924a4d95cf6ba393ed43158f16 (patch)
tree2f70314a592b1a0503cdaba5aecf1a4e1fce9735 /libdex/DexSwapVerify.cpp
parentc7f23a5816367f4d23f1bd9ed7621fd27fc294ed (diff)
downloadandroid_dalvik-dc7f63d94a9abf924a4d95cf6ba393ed43158f16.tar.gz
android_dalvik-dc7f63d94a9abf924a4d95cf6ba393ed43158f16.tar.bz2
android_dalvik-dc7f63d94a9abf924a4d95cf6ba393ed43158f16.zip
Fix bad whitespace alignment from LOGW to ALOGW change
Change-Id: I8eba74b92976f433aff42e6c4461e3127e519d77
Diffstat (limited to 'libdex/DexSwapVerify.cpp')
-rw-r--r--libdex/DexSwapVerify.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/libdex/DexSwapVerify.cpp b/libdex/DexSwapVerify.cpp
index 24a86f9ba..4b3cf4493 100644
--- a/libdex/DexSwapVerify.cpp
+++ b/libdex/DexSwapVerify.cpp
@@ -187,7 +187,7 @@ static inline bool checkPtrRange(const CheckState* state,
*/
#define CHECK_INDEX(_field, _limit) { \
if ((_field) >= (_limit)) { \
- ALOGW("Bad index: %s(%u) > %s(%u)", \
+ ALOGW("Bad index: %s(%u) > %s(%u)", \
#_field, (u4)(_field), #_limit, (u4)(_limit)); \
return 0; \
} \
@@ -206,7 +206,7 @@ static inline bool checkPtrRange(const CheckState* state,
*/
#define CHECK_INDEX_OR_NOINDEX(_field, _limit) { \
if ((_field) != kDexNoIndex && (_field) >= (_limit)) { \
- ALOGW("Bad index: %s(%u) > %s(%u)", \
+ ALOGW("Bad index: %s(%u) > %s(%u)", \
#_field, (u4)(_field), #_limit, (u4)(_limit)); \
return 0; \
} \