Author: chromatic
Date: Tue Dec 23 15:30:26 2008
New Revision: 34299

Modified:
   trunk/include/parrot/sub.h

Log:
[include] Removed a trailing comma in an enum, which picky C compilers hate
(reported by Jarkko).

Modified: trunk/include/parrot/sub.h
==============================================================================
--- trunk/include/parrot/sub.h  (original)
+++ trunk/include/parrot/sub.h  Tue Dec 23 15:30:26 2008
@@ -43,7 +43,7 @@
                           | SUB_FLAG_PF_MAIN
                           | SUB_FLAG_PF_LOAD
                           | SUB_FLAG_PF_IMMEDIATE
-                          | SUB_FLAG_PF_POSTCOMP,
+                          | SUB_FLAG_PF_POSTCOMP
 } sub_flags_enum;
 
 #define SUB_FLAG_get_FLAGS(o) (PObj_get_FLAGS(o))

Reply via email to