commit db5a745b8c0fbad6c0c9d8f13b8cc6458728c5b8
Author: Turo Lamminen <turotl@gmail.com>
AuthorDate: Tue May 15 20:13:27 2018 +0300
Commit: Turo Lamminen <turotl@gmail.com>
CommitDate: Tue May 15 20:13:27 2018 +0300
strife: Fix const correctness issue in A_QuestMsg
---
src/strife/p_enemy.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/strife/p_enemy.c b/src/strife/p_enemy.c
index 3508a680..09d27001 100644
--- a/src/strife/p_enemy.c
+++ b/src/strife/p_enemy.c
@@ -2691,7 +2691,7 @@ void P_DestroyConverter(void)
//
void A_QuestMsg(mobj_t* actor)
{
- char* name;
+ const char *name;
int quest;
int i;