- Fix two non-C-standard variable declarations.
- Fix function name of vsnprintf for windows systems.
This commit is contained in:
parent
8ca8d84591
commit
c1875302c2
2 changed files with 7 additions and 3 deletions
|
@ -719,7 +719,7 @@ void QDECL NET_OutOfBandPrint( netsrc_t sock, netadr_t adr, const char *format,
|
|||
string[3] = -1;
|
||||
|
||||
va_start( argptr, format );
|
||||
vsnprintf( string+4, sizeof(string)-4, format, argptr );
|
||||
Q_vsnprintf( string+4, sizeof(string)-4, format, argptr );
|
||||
va_end( argptr );
|
||||
|
||||
// send the datagram
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue