I don't like static. bigfoot will moan.

git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@1369 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
Spoike 2005-09-24 21:33:37 +00:00
parent 0b97e21aef
commit 7f855e3477
1 changed files with 1 additions and 1 deletions

View File

@ -130,7 +130,7 @@ Sends a text message in an out-of-band datagram
void Netchan_OutOfBandPrint (SOCKET sock, netadr_t adr, char *format, ...)
{
va_list argptr;
static char string[8192]; // ??? why static?
char string[8192];
va_start (argptr, format);
#ifdef _WIN32