[Android] jni: fix warning

Edward Wang git at videolan.org
Thu Jul 10 17:25:43 CEST 2014


vlc-ports/android | branch: master | Edward Wang <edward.c.wang at compdigitec.com> | Thu Jul 10 11:23:21 2014 -0400| [2ed40963f287b86c421d9a81b3ad45cb21c91d63] | committer: Edward Wang

jni: fix warning

pthread-rwlocks.c:66:11: warning: missing terminating ' character

> http://git.videolan.org/gitweb.cgi/vlc-ports/android.git/?a=commit;h=2ed40963f287b86c421d9a81b3ad45cb21c91d63
---

 vlc-android/jni/pthread-rwlocks.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/vlc-android/jni/pthread-rwlocks.c b/vlc-android/jni/pthread-rwlocks.c
index 10d12c0..62b9bd4 100644
--- a/vlc-android/jni/pthread-rwlocks.c
+++ b/vlc-android/jni/pthread-rwlocks.c
@@ -63,7 +63,7 @@
 static int __get_thread_id(void)
 {
 #ifdef __LP64__
-#error Don't build pthread fallbacks for 64 bit, use the proper functions
+#error "Don't build pthread fallbacks for 64 bit, use the proper functions"
 #else
     return pthread_self();
 #endif



More information about the Android mailing list