diff options
Diffstat (limited to 'android/main-ui.c')
-rw-r--r-- | android/main-ui.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/android/main-ui.c b/android/main-ui.c index 9bf121b..e9973b0 100644 --- a/android/main-ui.c +++ b/android/main-ui.c @@ -442,7 +442,7 @@ int main(int argc, char **argv) opts->no_skin = opts->noskin; /* Parses options and builds an appropriate AVD. */ - avd = android_avdInfo = createAVD(opts, &inAndroidBuild) ; + avd = android_avdInfo = createAVD(opts, &inAndroidBuild); /* get the skin from the virtual device configuration */ opts->skin = (char*) avdInfo_getSkinName( avd ); @@ -1015,7 +1015,7 @@ int main(int argc, char **argv) #endif args[n++] = "-android-avdname"; - args[n++] = avdInfo_getName(avd); + args[n++] = (char*) avdInfo_getName(avd); /* Set up the interfaces for inter-emulator networking */ if (opts->shared_net_id) { |