From d076f55e8115b63fd898ed41164e0ee2437b5a92 Mon Sep 17 00:00:00 2001 From: Andrew Talbot Date: Fri, 16 Feb 2007 16:40:58 +0000 Subject: [PATCH] mciseq: Constify a variable. --- dlls/mciseq/mcimidi.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/mciseq/mcimidi.c b/dlls/mciseq/mcimidi.c index 5533814584a..2da1fda12eb 100644 --- a/dlls/mciseq/mcimidi.c +++ b/dlls/mciseq/mcimidi.c @@ -1044,8 +1044,8 @@ static DWORD MIDI_mciPlay(UINT wDevID, DWORD dwFlags, LPMCI_PLAY_PARMS lpParms) if (TRACE_ON(mcimidi)) { char buf[1024]; WORD len = mmt->wEventLength - HIWORD(mmt->dwEventData); - static const char* info[8] = {"", "Text", "Copyright", "Seq/Trk name", - "Instrument", "Lyric", "Marker", "Cue-point"}; + static const char* const info[8] = {"", "Text", "Copyright", "Seq/Trk name", + "Instrument", "Lyric", "Marker", "Cue-point"}; WORD idx = HIBYTE(LOWORD(mmt->dwEventData)); if (len >= sizeof(buf)) {