diff options
author | thilo <thilo@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2009-06-01 00:18:02 +0000 |
---|---|---|
committer | thilo <thilo@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2009-06-01 00:18:02 +0000 |
commit | 1afcf706fa76e9d5d0ff7035b671a269a53014cf (patch) | |
tree | b2eab9e84e0f75c49e0415ff1c178ba6afc82578 /code/qcommon | |
parent | 9443266c858435da2df22618c6a098c136e917d8 (diff) | |
download | ioquake3-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/qcommon')
-rw-r--r-- | code/qcommon/common.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/code/qcommon/common.c b/code/qcommon/common.c index fbeea3c..75e5f80 100644 --- a/code/qcommon/common.c +++ b/code/qcommon/common.c @@ -2382,7 +2382,7 @@ void Com_ReadCDKey( const char *filename ) { char buffer[33]; char fbuffer[MAX_OSPATH]; - sprintf(fbuffer, "%s/q3key", filename); + Com_sprintf(fbuffer, sizeof(fbuffer), "%s/q3key", filename); FS_SV_FOpenFileRead( fbuffer, &f ); if ( !f ) { @@ -2412,7 +2412,7 @@ void Com_AppendCDKey( const char *filename ) { char buffer[33]; char fbuffer[MAX_OSPATH]; - sprintf(fbuffer, "%s/q3key", filename); + Com_sprintf(fbuffer, sizeof(fbuffer), "%s/q3key", filename); FS_SV_FOpenFileRead( fbuffer, &f ); if (!f) { @@ -2447,7 +2447,7 @@ static void Com_WriteCDKey( const char *filename, const char *ikey ) { #endif - sprintf(fbuffer, "%s/q3key", filename); + Com_sprintf(fbuffer, sizeof(fbuffer), "%s/q3key", filename); Q_strncpyz( key, ikey, 17 ); |