Author: cotto
Date: Sat Jul 26 22:40:06 2008
New Revision: 29787

Modified:
   trunk/src/intlist.c

Log:
[codingstd] fix a trailing space     


Modified: trunk/src/intlist.c
==============================================================================
--- trunk/src/intlist.c (original)
+++ trunk/src/intlist.c Sat Jul 26 22:40:06 2008
@@ -307,7 +307,7 @@
 intlist_get(PARROT_INTERP, ARGMOD(IntList *list), INTVAL idx)
 {
     void * const ret = list_get(interp, (List *)list, idx, enum_type_INTVAL);
-    if (ret) 
+    if (ret)
         return *(INTVAL *)ret;
 
     return (INTVAL)0;

Reply via email to