From 0482d678946684d559b49c45fc333f2e0032b2ba Mon Sep 17 00:00:00 2001 From: helixhorned Date: Mon, 9 Jul 2012 19:00:23 +0000 Subject: [PATCH] This should fix the "assignment discards 'const' qualifier" warning in music.c. git-svn-id: https://svn.eduke32.com/eduke32@2824 1a8010ca-5511-0410-912e-c29ae57300e0 --- polymer/eduke32/source/music.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/polymer/eduke32/source/music.c b/polymer/eduke32/source/music.c index 0a4513ca3..8cf5e85cf 100644 --- a/polymer/eduke32/source/music.c +++ b/polymer/eduke32/source/music.c @@ -75,7 +75,7 @@ const char *MUSIC_ErrorString ) { - char *ErrorString; + const char *ErrorString; switch (ErrorNumber) {