From a7266ca134db3b3a77ac02cb8e90e290aac90c36 Mon Sep 17 00:00:00 2001 From: "fischman@webrtc.org" Date: Thu, 3 Oct 2013 19:04:18 +0000 Subject: [PATCH] Fix clang build break TBR=henrike@webrtc.org Review URL: https://webrtc-codereview.appspot.com/2350004 git-svn-id: http://webrtc.googlecode.com/svn/trunk@4917 4adac7df-926f-26a2-2b94-8c16560cd09d --- talk/app/webrtc/java/jni/peerconnection_jni.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/talk/app/webrtc/java/jni/peerconnection_jni.cc b/talk/app/webrtc/java/jni/peerconnection_jni.cc index 30df6ade05..218864c371 100644 --- a/talk/app/webrtc/java/jni/peerconnection_jni.cc +++ b/talk/app/webrtc/java/jni/peerconnection_jni.cc @@ -1583,7 +1583,7 @@ JOW(void, VideoSource_restart)( StartCapturing(cricket::VideoFormat(*format)); } -JOW(jboolean, VideoSource_freeNativeVideoFormat)( +JOW(void, VideoSource_freeNativeVideoFormat)( JNIEnv* jni, jclass, jlong j_p) { delete reinterpret_cast(j_p); }