From 8e27d23bd584868f1117c50dd2951cc3d1240fae Mon Sep 17 00:00:00 2001 From: twinaphex Date: Tue, 9 Sep 2014 17:25:05 +0200 Subject: [PATCH] Style / indent nits --- frontend/platform/platform_android.c | 9 ++++++--- frontend/platform/platform_ps3.c | 3 ++- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/frontend/platform/platform_android.c b/frontend/platform/platform_android.c index 425efdd75f..3a6a410848 100644 --- a/frontend/platform/platform_android.c +++ b/frontend/platform/platform_android.c @@ -320,7 +320,8 @@ JNIEnv *jni_thread_getenv(void) { JNIEnv *env; struct android_app* android_app = (struct android_app*)g_android; - int status = (*android_app->activity->vm)->AttachCurrentThread(android_app->activity->vm, &env, 0); + int status = (*android_app->activity->vm)-> + AttachCurrentThread(android_app->activity->vm, &env, 0); if (status < 0) { @@ -342,7 +343,8 @@ static void jni_thread_destruct(void *value) return; if (android_app) - (*android_app->activity->vm)->DetachCurrentThread(android_app->activity->vm); + (*android_app->activity->vm)-> + DetachCurrentThread(android_app->activity->vm); pthread_setspecific(thread_key, NULL); } @@ -490,7 +492,8 @@ static void frontend_android_get_environment_settings(int *argc, args->state_path = NULL; } - CALL_OBJ_METHOD(env, obj, android_app->activity->clazz, android_app->getIntent); + CALL_OBJ_METHOD(env, obj, android_app->activity->clazz, + android_app->getIntent); RARCH_LOG("Checking arguments passed from intent ...\n"); // Config file diff --git a/frontend/platform/platform_ps3.c b/frontend/platform/platform_ps3.c index b29c3463fd..2e2085d8c7 100644 --- a/frontend/platform/platform_ps3.c +++ b/frontend/platform/platform_ps3.c @@ -151,7 +151,8 @@ static void frontend_ps3_get_environment_settings(int *argc, char *argv[], { RARCH_LOG("cellGameBootCheck() OK.\n"); RARCH_LOG("Directory name: [%s].\n", dirName); - RARCH_LOG(" HDD Free Size (in KB) = [%d] Size (in KB) = [%d] System Size (in KB) = [%d].\n", size.hddFreeSizeKB, size.sizeKB, size.sysSizeKB); + RARCH_LOG(" HDD Free Size (in KB) = [%d] Size (in KB) = [%d] System Size (in KB) = [%d].\n", + size.hddFreeSizeKB, size.sizeKB, size.sysSizeKB); switch(get_type) {