Austin English : quartz: Remove extraneous parentheses (LLVM/Clang).

Alexandre Julliard julliard at winehq.org
Wed Apr 13 10:49:27 CDT 2011


Module: wine
Branch: master
Commit: 376bbd1eccb5e47590441b4a4d9e61afc3636772
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=376bbd1eccb5e47590441b4a4d9e61afc3636772

Author: Austin English <austinenglish at gmail.com>
Date:   Tue Apr 12 17:42:54 2011 -0500

quartz: Remove extraneous parentheses (LLVM/Clang).

---

 dlls/quartz/filtergraph.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/quartz/filtergraph.c b/dlls/quartz/filtergraph.c
index 05b6e47..cf38ed9 100644
--- a/dlls/quartz/filtergraph.c
+++ b/dlls/quartz/filtergraph.c
@@ -94,7 +94,7 @@ static int EventsQueue_Destroy(EventsQueue* omr)
 static int EventsQueue_PutEvent(EventsQueue* omr, const Event* evt)
 {
     EnterCriticalSection(&omr->msg_crst);
-    if ((omr->msg_toget == ((omr->msg_tosave + 1) % omr->ring_buffer_size)))
+    if (omr->msg_toget == ((omr->msg_tosave + 1) % omr->ring_buffer_size))
     {
 	int old_ring_buffer_size = omr->ring_buffer_size;
 	omr->ring_buffer_size += EVENTS_RING_BUFFER_INCREMENT;




More information about the wine-cvs mailing list