[svn:parrot] r35936 - in trunk: examples/pir src
[email protected] Fri, 23 Jan 2009 17:55:09 -0800 (PST)
| Newsgroups | perl.cvs.parrot |
|---|---|
| Message-ID | <[email protected]> |
Author: julianalbo
Date: Fri Jan 23 17:55:09 2009
New Revision: 35936
Modified:
trunk/examples/pir/pirric.pir
trunk/src/embed.c
Log:
codingstd fixes
Modified: trunk/examples/pir/pirric.pir
==============================================================================
--- trunk/examples/pir/pirric.pir (original)
+++ trunk/examples/pir/pirric.pir Fri Jan 23 17:55:09 2009
@@ -917,7 +917,7 @@
emptyargs:
result = fun()
done:
- .return(result)
+ .return(result)
.end
#-----------------------------------------------------------------------
Modified: trunk/src/embed.c
==============================================================================
--- trunk/src/embed.c (original)
+++ trunk/src/embed.c Fri Jan 23 17:55:09 2009
@@ -1089,7 +1089,7 @@
/*Parrot_print_p(interp, c->u.key);*/
STRING * const s = VTABLE_get_string(interp, c->u.key);
if (s)
- Parrot_io_printf(interp, "%Ss",s);
+ Parrot_io_printf(interp, "%Ss", s);
break;
}
case enum_class_Sub: