summaryrefslogtreecommitdiff
path: root/src/hexen/h2_main.c
diff options
context:
space:
mode:
authorSimon Howard2014-03-30 19:00:49 -0400
committerSimon Howard2014-03-30 19:00:49 -0400
commit01ae851bf998330a9ca95467e238c507aa55cae1 (patch)
tree3fe17da2cdd49ea725c7a6d044ca4885ce024401 /src/hexen/h2_main.c
parent6bb5f78bd2bdf10ddbb087171c6f640d425c9d40 (diff)
downloadchocolate-doom-01ae851bf998330a9ca95467e238c507aa55cae1.tar.gz
chocolate-doom-01ae851bf998330a9ca95467e238c507aa55cae1.tar.bz2
chocolate-doom-01ae851bf998330a9ca95467e238c507aa55cae1.zip
hexen: Eliminate use of sprintf().
Use snprintf() in place of sprintf(). This is part of fixing #371.
Diffstat (limited to 'src/hexen/h2_main.c')
-rw-r--r--src/hexen/h2_main.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/hexen/h2_main.c b/src/hexen/h2_main.c
index f6351fae..607bc26b 100644
--- a/src/hexen/h2_main.c
+++ b/src/hexen/h2_main.c
@@ -172,7 +172,7 @@ void D_BindVariables(void)
{
char buf[12];
- sprintf(buf, "chatmacro%i", i);
+ snprintf(buf, sizeof(buf), "chatmacro%i", i);
M_BindVariable(buf, &chat_macros[i]);
}
}
@@ -190,7 +190,7 @@ static void D_SetDefaultSavePath(void)
if (!strcmp(SavePath, ""))
{
SavePath = malloc(10);
- sprintf(SavePath, "hexndata%c", DIR_SEPARATOR);
+ snprintf(SavePath, 10, "hexndata%c", DIR_SEPARATOR);
}
}
@@ -632,7 +632,7 @@ void H2_GameLoop(void)
if (M_CheckParm("-debugfile"))
{
char filename[20];
- sprintf(filename, "debug%i.txt", consoleplayer);
+ snprintf(filename, sizeof(filename), "debug%i.txt", consoleplayer);
debugfile = fopen(filename, "w");
}
I_SetWindowTitle("Hexen");