summaryrefslogtreecommitdiffstats
path: root/dexopt
diff options
context:
space:
mode:
authorDan Bornstein <danfuzz@android.com>2011-05-26 10:46:25 -0700
committerDan Bornstein <danfuzz@android.com>2011-05-26 10:46:25 -0700
commit291c84f60853d30e1c0d79dd08c5e5164f588e26 (patch)
treeb9c4b6389c00b0b1f55bef1cc9cb244139e841f6 /dexopt
parent60fc806b679a3655c228b4093058c59941a49cfe (diff)
downloadandroid_dalvik-291c84f60853d30e1c0d79dd08c5e5164f588e26.tar.gz
android_dalvik-291c84f60853d30e1c0d79dd08c5e5164f588e26.tar.bz2
android_dalvik-291c84f60853d30e1c0d79dd08c5e5164f588e26.zip
Prefer printf format "%#x" over "0x%x".
I exist to serve. Change-Id: I8e2880b20eefd466da8515d5b6b0c5cb75d56169
Diffstat (limited to 'dexopt')
-rw-r--r--dexopt/OptMain.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/dexopt/OptMain.cpp b/dexopt/OptMain.cpp
index 630ca384b..446025200 100644
--- a/dexopt/OptMain.cpp
+++ b/dexopt/OptMain.cpp
@@ -455,7 +455,7 @@ static int fromDex(int argc, char* const argv[])
GET_ARG(crc, strtoul, "bad crc");
GET_ARG(flags, strtol, "bad flags");
- LOGV("Args: fd=%d off=%ld len=%ld name='%s' mod=0x%x crc=0x%x flg=%d (argc=%d)",
+ LOGV("Args: fd=%d off=%ld len=%ld name='%s' mod=%#x crc=%#x flg=%d (argc=%d)",
fd, offset, length, debugFileName, modWhen, crc, flags, argc);
assert(argc > 0);