[svn:parrot] r49186 - trunk/include/parrot

luben at svn.parrot.org luben at svn.parrot.org
Mon Sep 20 21:19:22 UTC 2010


Author: luben
Date: Mon Sep 20 21:19:22 2010
New Revision: 49186
URL: https://trac.parrot.org/parrot/changeset/49186

Log:
the fix of code std was right

Modified:
   trunk/include/parrot/hash.h

Modified: trunk/include/parrot/hash.h
==============================================================================
--- trunk/include/parrot/hash.h	Mon Sep 20 20:53:52 2010	(r49185)
+++ trunk/include/parrot/hash.h	Mon Sep 20 21:19:22 2010	(r49186)
@@ -105,9 +105,9 @@
     if ((_hash)->key_type == Hash_key_type_int                              \
     ||  (_hash)->key_type == Hash_key_type_cstring                          \
     ||  (_hash)->key_type == Hash_key_type_ptr)                             \
-        parrot_hash_iterate_indexed(_hash, _code)                           \
+        parrot_hash_iterate_indexed((_hash), _code)                         \
     else                                                                    \
-        parrot_hash_iterate_linear(_hash, _code)                            \
+        parrot_hash_iterate_linear((_hash), _code)                          \
 }
 
 typedef void (*value_free)(ARGFREE(void *));


More information about the parrot-commits mailing list