From af33b62a729fd3658a3e7623c7e52155ce3e4c00 Mon Sep 17 00:00:00 2001 From: "wu@webrtc.org" Date: Wed, 20 Mar 2013 21:22:48 +0000 Subject: [PATCH] Fix -Wstring-conversion warnings. Review URL: https://webrtc-codereview.appspot.com/1215006 git-svn-id: http://webrtc.googlecode.com/svn/trunk@3696 4adac7df-926f-26a2-2b94-8c16560cd09d --- webrtc/modules/video_capture/linux/video_capture_linux.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webrtc/modules/video_capture/linux/video_capture_linux.cc b/webrtc/modules/video_capture/linux/video_capture_linux.cc index de4958e439..c2fdac0c67 100644 --- a/webrtc/modules/video_capture/linux/video_capture_linux.cc +++ b/webrtc/modules/video_capture/linux/video_capture_linux.cc @@ -311,7 +311,7 @@ WebRtc_Word32 VideoCaptureModuleV4L2::StopCapture() // Couldn't stop the thread, leak instead of crash. WEBRTC_TRACE(webrtc::kTraceError, webrtc::kTraceVideoCapture, -1, "%s: could not stop capture thread", __FUNCTION__); - assert(!"could not stop capture thread"); + assert(false); } }