diff options
author | Andrew Hsieh <andrewhsieh@google.com> | 2012-03-16 01:25:04 -0700 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2012-03-16 01:25:04 -0700 |
commit | facee1d1d0c3029915f5443c788cd32b9f5b9c83 (patch) | |
tree | 091b7277865812b507f7e57c5993ffc26f1c6e67 /android/main.c | |
parent | 46ff3eaff40952df50ee14056cae88a3e7396a81 (diff) | |
parent | c7389bd69e570a2c8432b37399aff1976b021f0f (diff) | |
download | external_qemu-facee1d1d0c3029915f5443c788cd32b9f5b9c83.zip external_qemu-facee1d1d0c3029915f5443c788cd32b9f5b9c83.tar.gz external_qemu-facee1d1d0c3029915f5443c788cd32b9f5b9c83.tar.bz2 |
Merge "64-bit emulator"
Diffstat (limited to 'android/main.c')
-rw-r--r-- | android/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/android/main.c b/android/main.c index bd5a2fc..5aaf65e 100644 --- a/android/main.c +++ b/android/main.c @@ -145,7 +145,7 @@ _adjustPartitionSize( const char* description, if (imageMB > defaultMB) { snprintf(temp, sizeof temp, "(%d MB > %d MB)", imageMB, defaultMB); } else { - snprintf(temp, sizeof temp, "(%lld bytes > %lld bytes)", imageBytes, defaultBytes); + snprintf(temp, sizeof temp, "(%" PRIu64 " bytes > %" PRIu64 " bytes)", imageBytes, defaultBytes); } if (inAndroidBuild) { |