winmm: Constify some variables

Andrew Talbot andrew.talbot at talbotville.com
Mon Aug 22 14:31:51 CDT 2011


Changelog:
    winmm: Constify some variables.

diff --git a/dlls/winmm/mmio.c b/dlls/winmm/mmio.c
index aff150a..8c49826 100644
--- a/dlls/winmm/mmio.c
+++ b/dlls/winmm/mmio.c
@@ -380,8 +380,8 @@ static FOURCC MMIO_ParseExtA(LPCSTR szFileName)
     FOURCC ret = 0;
 
     /* Note that ext{Start,End} point to the . and + respectively */
-    LPSTR extEnd;
-    LPSTR extStart;
+    LPCSTR extEnd;
+    LPCSTR extStart;
 
     CHAR ext[5];
 



More information about the wine-patches mailing list