mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-26 06:10:56 +00:00
More variable declares in the middle of functions. gcc 2.95 does not seem to like this at all...
This commit is contained in:
parent
872c2f5c5f
commit
3fbb55f8ad
1 changed files with 2 additions and 3 deletions
|
@ -279,15 +279,14 @@ Mst_SendList (void)
|
|||
{
|
||||
byte buf[MAX_DATAGRAM];
|
||||
sizebuf_t msg;
|
||||
server_t *sv;
|
||||
short int sv_num = 0;
|
||||
|
||||
msg.data = buf;
|
||||
msg.maxsize = sizeof (buf);
|
||||
msg.cursize = 0;
|
||||
msg.allowoverflow = true;
|
||||
msg.overflowed = false;
|
||||
server_t *sv;
|
||||
short int sv_num = 0;
|
||||
|
||||
|
||||
// number of servers:
|
||||
for (sv = sv_list; sv; sv = sv->next)
|
||||
|
|
Loading…
Reference in a new issue