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
This commit is contained in:
parent
2349ee0996
commit
6bdd470cf1
|
@ -1946,8 +1946,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;
|
||||
|
|
Loading…
Reference in New Issue