foxygit / doom Log in
commit 62571c3de61a1d1d576c94a8c0b70380e4f592fe
Author:     Fabian Greffrath <fabian@greffrath.com>
AuthorDate: Tue Nov 6 15:26:08 2018 +0100
Commit:     Fabian Greffrath <fabian@greffrath.com>
CommitDate: Tue Nov 6 15:26:08 2018 +0100

    d_iwad: fix a missing pointer indicator in a variable declaration
---
 src/d_iwad.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/d_iwad.c b/src/d_iwad.c
index cda32b91..739e5e7e 100644
--- a/src/d_iwad.c
+++ b/src/d_iwad.c
@@ -385,7 +385,7 @@ static void CheckSteamGUSPatches(void)
 {
     const char *current_path;
     char *install_path;
-    char *test_patch_path, patch_path;
+    char *test_patch_path, *patch_path;

     // Already configured? Don't stomp on the user's choices.
     current_path = M_GetStringVariable("gus_patch_path");