mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-01-30 20:50:42 +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,14 +129,14 @@ GIB_Parse_Extract_Line (struct cbuf_s *cbuf)
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
char c;
|
char c;
|
||||||
|
|
||||||
if (GIB_DATA(cbuf)->ret.waiting) // Not ready for next line
|
|
||||||
return;
|
|
||||||
|
|
||||||
dstring_t *dstr = cbuf->buf;
|
dstring_t *dstr = cbuf->buf;
|
||||||
|
|
||||||
|
if (GIB_DATA(cbuf)->ret.waiting ) // Not ready for the next line
|
||||||
|
return;
|
||||||
|
|
||||||
dstring_clearstr (cbuf->line);
|
dstring_clearstr (cbuf->line);
|
||||||
|
|
||||||
|
|
||||||
for (i = 0; dstr->str[i]; i++) {
|
for (i = 0; dstr->str[i]; i++) {
|
||||||
if (dstr->str[i] == '{') {
|
if (dstr->str[i] == '{') {
|
||||||
if ((c = GIB_Parse_Match_Brace (dstr->str, &i))) {
|
if ((c = GIB_Parse_Match_Brace (dstr->str, &i))) {
|
||||||
|
|
Loading…
Reference in a new issue