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

View file

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