From: havoc Date: Fri, 5 Aug 2011 21:19:06 +0000 (+0000) Subject: fix typos X-Git-Tag: xonotic-v0.6.0~163^2~282 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=1e31fd8ce86ded2d447ce9ba77bb77cecd56d48e;p=xonotic%2Fdarkplaces.git fix typos git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@11270 d7cf8633-e32d-0410-b094-e92efae38249 --- diff --git a/netconn.c b/netconn.c index cb19aaee..eefae3ad 100755 --- a/netconn.c +++ b/netconn.c @@ -2309,7 +2309,7 @@ static qboolean NetConn_BuildStatusResponse(const char* challenge, char* out_msg char *p; const char *q; p = qcstatus; - for(q = str; *q && (size_t)((p - qcstatus) < (sizeof(qcstatus)) - 1); ++q) + for(q = str; *q && (size_t)(p - qcstatus) < (sizeof(qcstatus) - 1); ++q) if(*q != '\\' && *q != '\n') *p++ = *q; *p = 0;