summaryrefslogtreecommitdiffstats
path: root/dexdump
diff options
context:
space:
mode:
authorDan Bornstein <danfuzz@android.com>2010-11-12 12:51:35 -0800
committerDan Bornstein <danfuzz@android.com>2010-11-12 12:58:46 -0800
commit1530c3e6952581aa20ac1e06562a49b9d70bc2b6 (patch)
tree2fba8c2b8998a9c45f88c509fd201783fae9e150 /dexdump
parent72bc1b14746a8e3a9a4337216e7c281389550a74 (diff)
downloadandroid_dalvik-1530c3e6952581aa20ac1e06562a49b9d70bc2b6.tar.gz
android_dalvik-1530c3e6952581aa20ac1e06562a49b9d70bc2b6.tar.bz2
android_dalvik-1530c3e6952581aa20ac1e06562a49b9d70bc2b6.zip
TypeRef, not ClassRef.
Old habits die hard. The things in question have been called TypeRefs for quite a while now. Change-Id: I77b0066a67c63b8e801ec62eb613f18a4812585a
Diffstat (limited to 'dexdump')
-rw-r--r--dexdump/DexDump.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/dexdump/DexDump.c b/dexdump/DexDump.c
index 26bb07bb0..071793ea3 100644
--- a/dexdump/DexDump.c
+++ b/dexdump/DexDump.c
@@ -766,8 +766,8 @@ static char* indexString(DexFile* pDexFile,
outSize = snprintf(buf, bufSize, "<index-varies> // thing@%0*x",
width, index);
break;
- case kIndexClassRef:
- outSize = snprintf(buf, bufSize, "%s // class@%0*x",
+ case kIndexTypeRef:
+ outSize = snprintf(buf, bufSize, "%s // type@%0*x",
getClassDescriptor(pDexFile, index), width, index);
break;
case kIndexStringRef: