From 4aca7601265ca76339662aa4e1a9c6669cebc9a0 Mon Sep 17 00:00:00 2001 From: Andrew Talbot Date: Mon, 22 Aug 2011 20:31:51 +0100 Subject: [PATCH] winmm: Constify some variables. --- dlls/winmm/mmio.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/winmm/mmio.c b/dlls/winmm/mmio.c index aff150a1b82..8c49826af9a 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];