Thomas Faber : quartz: Avoid empty initializer braces.

Alexandre Julliard julliard at wine.codeweavers.com
Tue Feb 17 10:14:40 CST 2015


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

Author: Thomas Faber <thomas.faber at reactos.org>
Date:   Sat Feb 14 09:33:23 2015 +0100

quartz: Avoid empty initializer braces.

---

 dlls/quartz/dsoundrender.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/quartz/dsoundrender.c b/dlls/quartz/dsoundrender.c
index 9f96654..8e34655 100644
--- a/dlls/quartz/dsoundrender.c
+++ b/dlls/quartz/dsoundrender.c
@@ -916,7 +916,7 @@ static LONG cookie_counter = 1;
 
 static DWORD WINAPI DSoundAdviseThread(LPVOID lpParam) {
     DSoundRenderImpl *This = lpParam;
-    struct dsoundrender_timer head = { };
+    struct dsoundrender_timer head = {NULL};
     MSG msg;
 
     TRACE("(%p): Main Loop\n", This);




More information about the wine-cvs mailing list