|
|
Author: coke
Date: Wed Jul 30 22:43:26 2008
New Revision: 29904
Modified:
branches/pdd25cx/src/hash.c
Log:
update some real_exceptions that probably got merged in from trunk.
Modified: branches/pdd25cx/src/hash.c
==============================================================================
--- branches/pdd25cx/src/hash.c (original)
+++ branches/pdd25cx/src/hash.c Wed Jul 30 22:43:26 2008
@@ -395,7 +395,7 @@
while (bucket) {
if (++found > entries)
- real_exception(interp, NULL, 1,
+ Parrot_ex_throw_from_c_args(interp, NULL, 1,
"Detected hash corruption at hash %p entries %d",
hash, (int)entries);
@@ -419,7 +419,7 @@
while (bucket) {
if (++found > entries)
- real_exception(interp, NULL, 1,
+ Parrot_ex_throw_from_c_args(interp, NULL, 1,
"Detected hash corruption at hash %p entries %d",
hash, (int)entries);
|
|