diff options
author | Simon Howard | 2014-04-05 18:32:57 -0400 |
---|---|---|
committer | Simon Howard | 2014-04-05 18:32:57 -0400 |
commit | 226dbe09dda81adfb1b2929a832d7484ce3676d8 (patch) | |
tree | e487bd0bc3be2afb4a1a52a82efe56dfcf6a3831 | |
parent | e40651fd4de6f6431d51be0d5418fdba7a9ebce6 (diff) | |
download | chocolate-doom-226dbe09dda81adfb1b2929a832d7484ce3676d8.tar.gz chocolate-doom-226dbe09dda81adfb1b2929a832d7484ce3676d8.tar.bz2 chocolate-doom-226dbe09dda81adfb1b2929a832d7484ce3676d8.zip |
setup: Add missing argument to M_StringJoin.
Last argument to M_StringJoin needs to be NULL.
-rw-r--r-- | src/setup/execute.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/setup/execute.c b/src/setup/execute.c index 9d798264..9bc4f9ae 100644 --- a/src/setup/execute.c +++ b/src/setup/execute.c @@ -341,7 +341,7 @@ int ExecuteDoom(execute_context_t *context) // Build the command line - response_file_arg = M_StringJoin("@", context->response_file); + response_file_arg = M_StringJoin("@", context->response_file, NULL); // Run Doom |