[Android] jni: fix warning
Edward Wang
git at videolan.org
Thu Jul 10 17:27:21 CEST 2014
vlc-ports/android | branch: master | Edward Wang <edward.c.wang at compdigitec.com> | Thu Jul 10 11:23:21 2014 -0400| [c8e5a3fce9b2fbf4651581a71b59b21bbe85af50] | 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=c8e5a3fce9b2fbf4651581a71b59b21bbe85af50
---
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..0ce0da7 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