summaryrefslogtreecommitdiff
path: root/src/strife
diff options
context:
space:
mode:
authorSimon Howard2014-03-31 22:34:49 -0400
committerSimon Howard2014-03-31 22:34:49 -0400
commit565a1f08566520147a5abff5744dbcc256e5030c (patch)
tree612e1233a03989cb58323fedd082f43acfe9bdae /src/strife
parentd9c4297093eaf994e16e62381636ba3121713c43 (diff)
downloadchocolate-doom-565a1f08566520147a5abff5744dbcc256e5030c.tar.gz
chocolate-doom-565a1f08566520147a5abff5744dbcc256e5030c.tar.bz2
chocolate-doom-565a1f08566520147a5abff5744dbcc256e5030c.zip
strife: Add missing NULL to M_StringJoin call.
Diffstat (limited to 'src/strife')
-rw-r--r--src/strife/p_saveg.c2
1 files changed, 1 insertions, 1 deletions
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;