aboutsummaryrefslogtreecommitdiffstats
path: root/code/botlib
diff options
context:
space:
mode:
authorthilo <thilo@edf5b092-35ff-0310-97b2-ce42778d08ea>2009-06-01 00:18:02 +0000
committerthilo <thilo@edf5b092-35ff-0310-97b2-ce42778d08ea>2009-06-01 00:18:02 +0000
commit1afcf706fa76e9d5d0ff7035b671a269a53014cf (patch)
treeb2eab9e84e0f75c49e0415ff1c178ba6afc82578 /code/botlib
parent9443266c858435da2df22618c6a098c136e917d8 (diff)
downloadioquake3-aero-1afcf706fa76e9d5d0ff7035b671a269a53014cf.tar.gz
ioquake3-aero-1afcf706fa76e9d5d0ff7035b671a269a53014cf.zip
Replace a few sprintf with Com_sprintf
git-svn-id: svn://svn.icculus.org/quake3/trunk@1565 edf5b092-35ff-0310-97b2-ce42778d08ea
Diffstat (limited to 'code/botlib')
-rw-r--r--code/botlib/l_struct.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/code/botlib/l_struct.c b/code/botlib/l_struct.c
index 303ecaa..d948dc3 100644
--- a/code/botlib/l_struct.c
+++ b/code/botlib/l_struct.c
@@ -346,7 +346,7 @@ int WriteFloat(FILE *fp, float value)
char buf[128];
int l;
- sprintf(buf, "%f", value);
+ Com_sprintf(buf, sizeof(buf), "%f", value);
l = strlen(buf);
//strip any trailing zeros
while(l-- > 1)