mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-01-29 12:10:48 +00:00
Declared variable in the wrong spot. Don't know why gcc 3 accepted it.
This commit is contained in:
parent
87f0f480e4
commit
bdd0f69f17
1 changed files with 4 additions and 4 deletions
|
@ -129,13 +129,13 @@ GIB_Parse_Extract_Line (struct cbuf_s *cbuf)
|
|||
{
|
||||
int i;
|
||||
char c;
|
||||
|
||||
if (GIB_DATA(cbuf)->ret.waiting) // Not ready for next line
|
||||
return;
|
||||
|
||||
dstring_t *dstr = cbuf->buf;
|
||||
|
||||
if (GIB_DATA(cbuf)->ret.waiting ) // Not ready for the next line
|
||||
return;
|
||||
|
||||
dstring_clearstr (cbuf->line);
|
||||
|
||||
|
||||
for (i = 0; dstr->str[i]; i++) {
|
||||
if (dstr->str[i] == '{') {
|
||||
|
|
Loading…
Reference in a new issue