[svn:parrot] r41269 - trunk/src/pmc

bacek at svn.parrot.org bacek at svn.parrot.org
Tue Sep 15 13:46:06 UTC 2009


Author: bacek
Date: Tue Sep 15 13:46:03 2009
New Revision: 41269
URL: https://trac.parrot.org/parrot/changeset/41269

Log:
[cage] Improve error reporting in Hash.set_value_type

Modified:
   trunk/src/pmc/hash.pmc

Modified: trunk/src/pmc/hash.pmc
==============================================================================
--- trunk/src/pmc/hash.pmc	Tue Sep 15 13:31:40 2009	(r41268)
+++ trunk/src/pmc/hash.pmc	Tue Sep 15 13:46:03 2009	(r41269)
@@ -545,7 +545,7 @@
                 break;
             default:
                 Parrot_ex_throw_from_c_args(interp, NULL, EXCEPTION_UNIMPLEMENTED,
-                        "Hash: unsupported entry_type");
+                        "Hash: unsupported entry_type %d", type);
         }
 
         PARROT_HASH(SELF)->hash = new_hash;


More information about the parrot-commits mailing list