A bit closer to actually compiling.

git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@3059 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
Mark Olsen 2008-11-13 05:39:50 +00:00
parent 41a92be8b2
commit a6e7171f30
1 changed files with 2 additions and 2 deletions

View File

@ -2175,7 +2175,7 @@ qboolean FTENET_IRCConnect_GetPacket(ftenet_generic_connection_t *gcon)
s++;
if (!strncmp(s, "PRIVMSG ", 8))
{
char *dest;
unsigned char *dest;
s+=8;
while(*s == ' ')
@ -3209,7 +3209,7 @@ void NET_Init (void)
Con_TPrintf(TL_UDPINITED);
}
#define STRINGIFY2(s) #s
#define STRINGIFY(s) STRINGIFY2(##s)
#define STRINGIFY(s) STRINGIFY2(s)
#ifndef SERVERONLY
void NET_InitClient(void)
{