Author: coke
Date: Tue Feb 12 17:53:16 2008
New Revision: 25678

Modified:
   trunk/src/exceptions.c
   trunk/src/library.c

Log:
[codingstd]

Fixup some paren-based codingstd nits.



Modified: trunk/src/exceptions.c
==============================================================================
--- trunk/src/exceptions.c      (original)
+++ trunk/src/exceptions.c      Tue Feb 12 17:53:16 2008
@@ -972,8 +972,8 @@
 Parrot_assert(int condition, ARGIN(const char *condition_string),
         ARGIN(const char *file), unsigned int line)
 {
-    if ( !condition )
-        Parrot_confess(condition_string, file, line );
+    if (!condition)
+        Parrot_confess(condition_string, file, line);
 }
 
 /*

Modified: trunk/src/library.c
==============================================================================
--- trunk/src/library.c (original)
+++ trunk/src/library.c Tue Feb 12 17:53:16 2008
@@ -623,7 +623,7 @@
             return string_to_cstring(interp, s);
         }
         else
-            return str_dup( "." );
+            return str_dup(".");
     }
 }
 

Reply via email to