Thomas Faber : quartz: Avoid empty initializer braces.
Module: wine Branch: master Commit: 7f9a63e5fdb0636bd68e3a7b9a18423460d3f365 URL: http://source.winehq.org/git/wine.git/?a=commit;h=7f9a63e5fdb0636bd68e3a7b9a... Author: Thomas Faber <thomas.faber(a)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);
participants (1)
-
Alexandre Julliard