dsound: Place storage class before type qualifier

Andrew Talbot andrew.talbot at talbotville.com
Tue Sep 27 16:45:59 CDT 2011


Changelog:
    dsound: Place storage class before type qualifier.

diff --git a/dlls/dsound/dsound_main.c b/dlls/dsound/dsound_main.c
index 927c04c..3f950b2 100644
--- a/dlls/dsound/dsound_main.c
+++ b/dlls/dsound/dsound_main.c
@@ -319,8 +319,8 @@ HRESULT WINAPI DirectSoundEnumerateW(
     int err;
     WAVEOUTCAPSW caps;
 
-    const static WCHAR winmmW[] = {'w','i','n','m','m','.','d','l','l',0};
-    const static WCHAR primary_driverW[] = {'P','r','i','m','a','r','y',' ',
+    static const WCHAR winmmW[] = {'w','i','n','m','m','.','d','l','l',0};
+    static const WCHAR primary_driverW[] = {'P','r','i','m','a','r','y',' ',
         'S','o','u','n','d',' ','D','r','i','v','e','r',0};
 
     TRACE("lpDSEnumCallback = %p, lpContext = %p\n",



More information about the wine-patches mailing list