Author: paultcochrane
Date: Sat Mar 31 05:41:31 2007
New Revision: 17886

Modified:
   trunk/include/parrot/encoding.h
   trunk/include/parrot/packfile.h
   trunk/include/parrot/smallobject.h

Log:
[include] Fixed parentheses as per coding standards
Patch courtesy of Shawn M Moore <sartak at gmail dot com>

Modified: trunk/include/parrot/encoding.h
==============================================================================
--- trunk/include/parrot/encoding.h     (original)
+++ trunk/include/parrot/encoding.h     Sat Mar 31 05:41:31 2007
@@ -34,7 +34,7 @@
 
 struct string_iterator_t;       /* s. parrot/string.h */
 
-typedef void    (*encoding_iter_init_t)(Interp *, STRING *src,
+typedef void (*encoding_iter_init_t)(Interp *, STRING *src,
         struct string_iterator_t *);
 
 struct _encoding {

Modified: trunk/include/parrot/packfile.h
==============================================================================
--- trunk/include/parrot/packfile.h     (original)
+++ trunk/include/parrot/packfile.h     Sat Mar 31 05:41:31 2007
@@ -56,7 +56,7 @@
 
 typedef struct PackFile_Segment * (*PackFile_Segment_new_func_t)
     (Interp *, struct PackFile *, const char *, int add);
-typedef void   (*PackFile_Segment_destroy_func_t) (Interp *,
+typedef void (*PackFile_Segment_destroy_func_t) (Interp *,
         struct PackFile_Segment *);
 typedef size_t (*PackFile_Segment_packed_size_func_t)(Interp *,
         struct PackFile_Segment *);
@@ -64,7 +64,7 @@
         struct PackFile_Segment *, opcode_t *dest);
 typedef opcode_t * (*PackFile_Segment_unpack_func_t) (Interp *,
         struct PackFile_Segment *, opcode_t *packed);
-typedef void  (*PackFile_Segment_dump_func_t) (Interp *,
+typedef void (*PackFile_Segment_dump_func_t) (Interp *,
         struct PackFile_Segment *);
 
 struct PackFile_funcs {

Modified: trunk/include/parrot/smallobject.h
==============================================================================
--- trunk/include/parrot/smallobject.h  (original)
+++ trunk/include/parrot/smallobject.h  Sat Mar 31 05:41:31 2007
@@ -18,7 +18,7 @@
                              struct Small_Object_Pool *, void *);
 typedef void * (*get_free_object_fn_type)(Interp *,
                              struct Small_Object_Pool *);
-typedef void  (*alloc_objects_fn_type)(Interp *,
+typedef void (*alloc_objects_fn_type)(Interp *,
                            struct Small_Object_Pool *);
 
 #if PARROT_GC_GMS

Reply via email to