Author: chromatic
Date: Mon May  5 22:11:46 2008
New Revision: 27332

Modified:
   trunk/src/gc/smallobject.c
   trunk/src/hash.c
   trunk/src/packdump.c

Log:
[src] Fixed some header mismatches.

Modified: trunk/src/gc/smallobject.c
==============================================================================
--- trunk/src/gc/smallobject.c  (original)
+++ trunk/src/gc/smallobject.c  Mon May  5 22:11:46 2008
@@ -214,7 +214,7 @@
 
 /*
 
-=item C<static PObj * gc_ms_get_free_object>
+=item C<static void * gc_ms_get_free_object>
 
 Get a new object from the free pool and return it.
 
@@ -248,7 +248,7 @@
 
 /*
 
-=item C<static PObj * gc_ms_get_free_pmc_ext>
+=item C<static void * gc_ms_get_free_pmc_ext>
 
 Get a new PMC_EXT structure from the free pool and return it.
 

Modified: trunk/src/hash.c
==============================================================================
--- trunk/src/hash.c    (original)
+++ trunk/src/hash.c    Mon May  5 22:11:46 2008
@@ -73,12 +73,12 @@
 
 static void hash_thaw(PARROT_INTERP,
     ARGMOD(Hash *hash),
-    ARGMOD(visit_info* info))
+    ARGMOD(visit_info *info))
         __attribute__nonnull__(1)
         __attribute__nonnull__(2)
         __attribute__nonnull__(3)
         FUNC_MODIFIES(*hash)
-        FUNC_MODIFIES(* info);
+        FUNC_MODIFIES(*info);
 
 PARROT_WARN_UNUSED_RESULT
 PARROT_PURE_FUNCTION

Modified: trunk/src/packdump.c
==============================================================================
--- trunk/src/packdump.c        (original)
+++ trunk/src/packdump.c        Mon May  5 22:11:46 2008
@@ -35,7 +35,8 @@
         __attribute__nonnull__(3);
 
 static void pobj_flag_dump(PARROT_INTERP, ARGIN(long flags))
-        __attribute__nonnull__(1);
+        __attribute__nonnull__(1)
+        __attribute__nonnull__(2);
 
 /* HEADERIZER END: static */
 

Reply via email to