[svn:parrot] r40419 - trunk/src

bacek at svn.parrot.org bacek at svn.parrot.org
Wed Aug 5 12:34:24 UTC 2009


Author: bacek
Date: Wed Aug  5 12:34:24 2009
New Revision: 40419
URL: https://trac.parrot.org/parrot/changeset/40419

Log:
[cage] Put parentheses in if statement.

Modified:
   trunk/src/key.c

Modified: trunk/src/key.c
==============================================================================
--- trunk/src/key.c	Wed Aug  5 12:31:59 2009	(r40418)
+++ trunk/src/key.c	Wed Aug  5 12:34:24 2009	(r40419)
@@ -619,7 +619,7 @@
     }
 
     /* Mark next key */
-    if (flags == KEY_string_FLAG || flags == KEY_pmc_FLAG) {
+    if ((flags == KEY_string_FLAG) || (flags == KEY_pmc_FLAG)) {
         GETATTR_Key_next_key(interp, key, next_key);
         if (next_key)
             Parrot_gc_mark_PObj_alive(interp, (PObj *)next_key);


More information about the parrot-commits mailing list