[svn:parrot] r41898 - branches/pcc_reapply/src/call
bacek at svn.parrot.org
bacek at svn.parrot.org
Sat Oct 17 13:31:49 UTC 2009
Author: bacek
Date: Sat Oct 17 13:31:49 2009
New Revision: 41898
URL: https://trac.parrot.org/parrot/changeset/41898
Log:
[cage] Fix few compiler warnings.
Modified:
branches/pcc_reapply/src/call/args.c
Modified: branches/pcc_reapply/src/call/args.c
==============================================================================
--- branches/pcc_reapply/src/call/args.c Sat Oct 17 13:26:14 2009 (r41897)
+++ branches/pcc_reapply/src/call/args.c Sat Oct 17 13:31:49 2009 (r41898)
@@ -2292,8 +2292,8 @@
if (PMC_IS_NULL(parent) || PMC_IS_NULL(tailcall))
return;
else {
- const STRING * const results_s = CONST_STRING(interp, "results");
- const STRING * const return_flag_s = CONST_STRING(interp, "return_flags");
+ STRING * const results_s = CONST_STRING(interp, "results");
+ STRING * const return_flag_s = CONST_STRING(interp, "return_flags");
PMC * const results = VTABLE_get_attr_str(interp, parent, results_s);
PMC * const return_flags = VTABLE_get_attr_str(interp, parent, return_flag_s);
VTABLE_set_attr_str(interp, tailcall, results_s, results);
More information about the parrot-commits
mailing list