diff options
author | Simon Howard | 2014-03-31 22:34:49 -0400 |
---|---|---|
committer | Simon Howard | 2014-03-31 22:34:49 -0400 |
commit | 565a1f08566520147a5abff5744dbcc256e5030c (patch) | |
tree | 612e1233a03989cb58323fedd082f43acfe9bdae | |
parent | d9c4297093eaf994e16e62381636ba3121713c43 (diff) | |
download | chocolate-doom-565a1f08566520147a5abff5744dbcc256e5030c.tar.gz chocolate-doom-565a1f08566520147a5abff5744dbcc256e5030c.tar.bz2 chocolate-doom-565a1f08566520147a5abff5744dbcc256e5030c.zip |
strife: Add missing NULL to M_StringJoin call.
-rw-r--r-- | src/strife/p_saveg.c | 2 |
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; |