[svn:parrot] r48839 - trunk/src/nci
chromatic at svn.parrot.org
chromatic at svn.parrot.org
Tue Sep 7 23:57:10 UTC 2010
Author: chromatic
Date: Tue Sep 7 23:57:10 2010
New Revision: 48839
URL: https://trac.parrot.org/parrot/changeset/48839
Log:
[NCI] Removed spurious debugging output of r48831.
Modified:
trunk/src/nci/extra_thunks.c
Modified: trunk/src/nci/extra_thunks.c
==============================================================================
--- trunk/src/nci/extra_thunks.c Tue Sep 7 23:52:26 2010 (r48838)
+++ trunk/src/nci/extra_thunks.c Tue Sep 7 23:57:10 2010 (r48839)
@@ -2669,9 +2669,9 @@
VTABLE_set_pointer(interp, final_destination, return_data);
}
ret_object = Parrot_pcc_build_call_from_c_args(interp, call_object, "P", final_destination);
- if (!STRING_IS_NULL(ts_0)) { fprintf( stderr, "Freeing t_0\n" ); Parrot_str_free_cstring(t_0); }
+ if (!STRING_IS_NULL(ts_0)) Parrot_str_free_cstring(t_0);
-if (!STRING_IS_NULL(ts_2)) { fprintf( stderr, "Freeing t_2\n" ); Parrot_str_free_cstring(t_2); }
+if (!STRING_IS_NULL(ts_2)) Parrot_str_free_cstring(t_2);
VTABLE_set_integer_native(interp, t_3, i_3);
}
More information about the parrot-commits
mailing list