diff options
author | thilo <thilo@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2007-01-07 16:03:19 +0000 |
---|---|---|
committer | thilo <thilo@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2007-01-07 16:03:19 +0000 |
commit | 8727790c295f4243c4c94e3abb2dc1e9196587ae (patch) | |
tree | 87fdcd708e5d875c3d0eb8b7f6363ecaf4da029c /code/qcommon | |
parent | ea64cc1dc7033a1ede57f6bc278030429addeef9 (diff) | |
download | ioquake3-aero-8727790c295f4243c4c94e3abb2dc1e9196587ae.tar.gz ioquake3-aero-8727790c295f4243c4c94e3abb2dc1e9196587ae.zip |
- Fix two non-C-standard variable declarations.
- Fix function name of vsnprintf for windows systems.
git-svn-id: svn://svn.icculus.org/quake3/trunk@1027 edf5b092-35ff-0310-97b2-ce42778d08ea
Diffstat (limited to 'code/qcommon')
-rw-r--r-- | code/qcommon/net_chan.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/code/qcommon/net_chan.c b/code/qcommon/net_chan.c index 26f76db..bd819f8 100644 --- a/code/qcommon/net_chan.c +++ b/code/qcommon/net_chan.c @@ -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 |