From 4ff22dcdcbf31f4543c977ad4b40167695f712d2 Mon Sep 17 00:00:00 2001 From: Martin Storsjo Date: Sun, 27 Jul 2014 22:15:28 +0300 Subject: [PATCH] Fix the name of the native app glue lib in a header comment The incorrect name is misleading and confusing. Change-Id: I4040d7bc10370c440401dd9de7e1fc472830287a --- ndk/sources/android/native_app_glue/android_native_app_glue.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ndk/sources/android/native_app_glue/android_native_app_glue.h b/ndk/sources/android/native_app_glue/android_native_app_glue.h index 1b8c1f107..97202e094 100644 --- a/ndk/sources/android/native_app_glue/android_native_app_glue.h +++ b/ndk/sources/android/native_app_glue/android_native_app_glue.h @@ -39,7 +39,7 @@ extern "C" { * risk having the system force-close the application. This programming * model is direct, lightweight, but constraining. * - * The 'threaded_native_app' static library is used to provide a different + * The 'android_native_app_glue' static library is used to provide a different * execution model where the application can implement its own main event * loop in a different thread instead. Here's how it works: *