https://git.reactos.org/?p=reactos.git;a=commitdiff;h=f73ac17e3089efd68378ca45cf1dbfcab4d4aab0

commit f73ac17e3089efd68378ca45cf1dbfcab4d4aab0
Author:     Thamatip Chitpong <[email protected]>
AuthorDate: Tue Feb 7 00:52:53 2023 +0700
Commit:     Victor Perevertkin <[email protected]>
CommitDate: Tue Feb 7 20:53:08 2023 +0100

    [WINMM] Constify some variables
    
    Wine commit: 4aca7601265ca76339662aa4e1a9c6669cebc9a0
    
    author: Andrew Talbot <[email protected]>
    Mon, 22 Aug 2011 19:31:51 +0000 (20:31 +0100)
    
    committer: Alexandre Julliard <[email protected]>
    Tue, 23 Aug 2011 14:53:53 +0000 (16:53 +0200)
---
 dll/win32/winmm/mmio.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dll/win32/winmm/mmio.c b/dll/win32/winmm/mmio.c
index a0043d6627e..5e86722e747 100644
--- a/dll/win32/winmm/mmio.c
+++ b/dll/win32/winmm/mmio.c
@@ -366,8 +366,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];
 

Reply via email to