diff options
author | Kenny Root <kroot@google.com> | 2010-09-02 14:58:47 -0700 |
---|---|---|
committer | Kenny Root <kroot@google.com> | 2010-09-02 14:58:47 -0700 |
commit | 45162448b31921a3ec61d9910f521b46266f1970 (patch) | |
tree | a3e0079dbbe1ba140d20c6fa56324ae728811dfa /libs/utils | |
parent | 3fb3a4fbd0978f8b86fa9fc7d29f414faae27b62 (diff) | |
download | frameworks_native-45162448b31921a3ec61d9910f521b46266f1970.zip frameworks_native-45162448b31921a3ec61d9910f521b46266f1970.tar.gz frameworks_native-45162448b31921a3ec61d9910f521b46266f1970.tar.bz2 |
Add better debug output for ResourceType errors
An error code is returned as -ESOMETHING, but the debug code was
printing out 0x%08x for these codes making -74 print out as 0xffffffb5
which is kind of silly.
Change-Id: I7d77fb3da2e146845949f121404f662b47288e61
Diffstat (limited to 'libs/utils')
-rw-r--r-- | libs/utils/ResourceTypes.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/utils/ResourceTypes.cpp b/libs/utils/ResourceTypes.cpp index a1401ad..8345cc3 100644 --- a/libs/utils/ResourceTypes.cpp +++ b/libs/utils/ResourceTypes.cpp @@ -1934,8 +1934,8 @@ ssize_t ResTable::getResource(uint32_t resID, Res_value* outValue, bool mayBeBag ssize_t offset = getEntry(package, t, e, &mParams, &type, &entry, &typeClass); if (offset <= 0) { if (offset < 0) { - LOGW("Failure getting entry for 0x%08x (t=%d e=%d) in package %d: 0x%08x\n", - resID, t, e, (int)ip, (int)offset); + LOGW("Failure getting entry for 0x%08x (t=%d e=%d) in package %zd (error %d)\n", + resID, t, e, ip, (int)offset); return offset; } continue; |