Removes a warning.

Leon
-- 
Leon Brocard.............................http://www.astray.com/
scribot.................................http://www.scribot.com/

... We're not worthy! We're not worthy!
Index: imcc/pbc.c
===================================================================
RCS file: /cvs/public/parrot/imcc/pbc.c,v
retrieving revision 1.69
diff -u -r1.69 pbc.c
--- imcc/pbc.c  18 Mar 2004 08:56:58 -0000      1.69
+++ imcc/pbc.c  31 Mar 2004 09:56:29 -0000
@@ -214,7 +214,7 @@
 
 /* allocate a new globals.cs->subs structure */
 static void
-make_new_sub(struct Parrot_Interp *interpreter, IMC_Unit * unit)
+make_new_sub(struct Parrot_Interp *interpreter)
 {
     struct subs *s = mem_sys_allocate_zeroed(sizeof(struct subs));
     if (!s)
@@ -846,7 +846,7 @@
 
     if (!unit->instructions)
         return 0;
-    make_new_sub(interpreter, unit);     /* we start a new compilation unit */
+    make_new_sub(interpreter);     /* we start a new compilation unit */
     return 0;
 }
 

Reply via email to