aboutsummaryrefslogtreecommitdiffstats
path: root/android/main.c
diff options
context:
space:
mode:
authorAndrew Hsieh <andrewhsieh@google.com>2012-03-16 01:25:04 -0700
committerAndroid (Google) Code Review <android-gerrit@google.com>2012-03-16 01:25:04 -0700
commitfacee1d1d0c3029915f5443c788cd32b9f5b9c83 (patch)
tree091b7277865812b507f7e57c5993ffc26f1c6e67 /android/main.c
parent46ff3eaff40952df50ee14056cae88a3e7396a81 (diff)
parentc7389bd69e570a2c8432b37399aff1976b021f0f (diff)
downloadexternal_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.c2
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) {