[vlc-commits] atmo: remove extraneous parentheses

Rémi Denis-Courmont git at videolan.org
Sun Mar 25 23:03:18 CEST 2012


vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Mon Mar 26 00:02:49 2012 +0300| [e49b963817897c8789941a61e200341c58465319] | committer: Rémi Denis-Courmont

atmo: remove extraneous parentheses

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=e49b963817897c8789941a61e200341c58465319
---

 .../video_filter/atmo/AtmoExternalCaptureInput.cpp |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/modules/video_filter/atmo/AtmoExternalCaptureInput.cpp b/modules/video_filter/atmo/AtmoExternalCaptureInput.cpp
index 37c6950..cf91c7f 100644
--- a/modules/video_filter/atmo/AtmoExternalCaptureInput.cpp
+++ b/modules/video_filter/atmo/AtmoExternalCaptureInput.cpp
@@ -137,7 +137,7 @@ void CAtmoExternalCaptureInput::DeliverNewSourceDataPaket(VLC_BITMAPINFOHEADER *
 
 DWORD CAtmoExternalCaptureInput::Execute(void)
 {
-    while ((this->m_bTerminated == ATMO_FALSE)) {
+    while (this->m_bTerminated == ATMO_FALSE) {
           vlc_mutex_lock( &m_WakeupLock );
           vlc_cond_timedwait(&m_WakeupCond, &m_WakeupLock, mdate() + 75000 );
 



More information about the vlc-commits mailing list