summaryrefslogtreecommitdiff
path: root/libdexfile/dex/dex_file.cc
diff options
context:
space:
mode:
Diffstat (limited to 'libdexfile/dex/dex_file.cc')
-rw-r--r--libdexfile/dex/dex_file.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libdexfile/dex/dex_file.cc b/libdexfile/dex/dex_file.cc
index 2b68cfad0d..f30d39f30a 100644
--- a/libdexfile/dex/dex_file.cc
+++ b/libdexfile/dex/dex_file.cc
@@ -692,7 +692,7 @@ std::string DexFile::PrettyField(uint32_t field_idx, bool with_type) const {
const FieldId& field_id = GetFieldId(field_idx);
std::string result;
if (with_type) {
- result += GetFieldTypeDescriptor(field_id);
+ AppendPrettyDescriptor(GetFieldTypeDescriptor(field_id), &result);
result += ' ';
}
AppendPrettyDescriptor(GetFieldDeclaringClassDescriptor(field_id), &result);