From 565a1f08566520147a5abff5744dbcc256e5030c Mon Sep 17 00:00:00 2001 From: Simon Howard Date: Mon, 31 Mar 2014 22:34:49 -0400 Subject: strife: Add missing NULL to M_StringJoin call. --- src/strife/p_saveg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/strife') diff --git a/src/strife/p_saveg.c b/src/strife/p_saveg.c index 86b7d2b2..47fb7e8c 100644 --- a/src/strife/p_saveg.c +++ b/src/strife/p_saveg.c @@ -58,7 +58,7 @@ char *P_TempSaveGameFile(void) if (filename == NULL) { - filename = M_StringJoin(savegamedir, "temp.dsg"); + filename = M_StringJoin(savegamedir, "temp.dsg", NULL); } return filename; -- cgit v1.2.3