commit e822d5dfeca153088e1c1d1bb6a531f3f9484901
Author: Turo Lamminen <turotl@gmail.com>
AuthorDate: Tue Aug 7 18:35:28 2018 +0300
Commit: Turo Lamminen <turotl@gmail.com>
CommitDate: Tue Aug 7 18:45:11 2018 +0300
hexen: Make ACSAssert fmt parameter const
---
src/hexen/p_acs.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/hexen/p_acs.c b/src/hexen/p_acs.c
index 1a00cc39..f984f97b 100644
--- a/src/hexen/p_acs.c
+++ b/src/hexen/p_acs.c
@@ -310,7 +310,7 @@ static int (*PCodeCmds[]) (void) =
//
//==========================================================================
-static void ACSAssert(int condition, char *fmt, ...)
+static void ACSAssert(int condition, const char *fmt, ...)
{
char buf[128];
va_list args;