Replace a few sprintf with Com_sprintf

This commit is contained in:
Thilo Schulz 2009-06-01 00:18:02 +00:00
parent e0a2100df5
commit eaaaa6f5fc
3 changed files with 5 additions and 5 deletions

View file

@ -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)

View file

@ -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 );

View file

@ -518,7 +518,7 @@ void R_LevelShot( void ) {
float xScale, yScale;
int xx, yy;
sprintf( checkname, "levelshots/%s.tga", tr.world->baseName );
Com_sprintf(checkname, sizeof(checkname), "levelshots/%s.tga", tr.world->baseName);
source = ri.Hunk_AllocateTempMemory( glConfig.vidWidth * glConfig.vidHeight * 3 );