aboutsummaryrefslogtreecommitdiffstats
path: root/android
diff options
context:
space:
mode:
authorDavid 'Digit' Turner <digit@google.com>2009-10-29 18:12:02 -0700
committerDavid 'Digit' Turner <digit@google.com>2009-10-29 18:12:02 -0700
commit49dcc4de79c93de65c20706b798353be1e840915 (patch)
tree014a8f5134e725a066116592fa3b9f1562e7c816 /android
parentdef0e542c9cc004a7b83ff965103c34097c0960b (diff)
downloadexternal_qemu-49dcc4de79c93de65c20706b798353be1e840915.zip
external_qemu-49dcc4de79c93de65c20706b798353be1e840915.tar.gz
external_qemu-49dcc4de79c93de65c20706b798353be1e840915.tar.bz2
Fix typo which prevented the computation of the default /data partition size
from working properly.
Diffstat (limited to 'android')
-rw-r--r--android/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/android/main.c b/android/main.c
index 6e467b9..7b20919 100644
--- a/android/main.c
+++ b/android/main.c
@@ -1800,7 +1800,7 @@ int main(int argc, char **argv)
unsigned cachePartitionSize = 0;
unsigned systemPartitionSize = 0;
unsigned dataPartitionSize = 0;
- unsigned defaultPartitionSize = convertBytesToMB(66);
+ unsigned defaultPartitionSize = convertMBToBytes(66);
AndroidHwConfig* hw;
AvdInfo* avd;