]> git.mxchange.org Git - simgear.git/commitdiff
Oops, Frederic caught an inline declaration that had snuck into the code.
authorandy <andy>
Tue, 20 Sep 2005 21:38:08 +0000 (21:38 +0000)
committerandy <andy>
Tue, 20 Sep 2005 21:38:08 +0000 (21:38 +0000)
simgear/nasal/misc.c

index 82066b89aeeb40433f22900af978405e92fb5e7d..f1bd6de9b1b331eab4d1e35266aec0af5b596991 100644 (file)
@@ -15,8 +15,9 @@ void naTempSave(naContext c, naRef r)
     int i;
     if(!IS_OBJ(r)) return;
     if(c->ntemps >= c->tempsz) {
+        struct naObj** newtemps;
         c->tempsz *= 2;
-        struct naObj** newtemps = naAlloc(c->tempsz * sizeof(struct naObj*));
+        newtemps = naAlloc(c->tempsz * sizeof(struct naObj*));
         for(i=0; i<c->ntemps; i++)
             newtemps[i] = c->temps[i];
         naFree(c->temps);