[svn:parrot] r39574 - trunk/src/string
whiteknight at svn.parrot.org
whiteknight at svn.parrot.org
Mon Jun 15 21:27:34 UTC 2009
Author: whiteknight
Date: Mon Jun 15 21:27:33 2009
New Revision: 39574
URL: https://trac.parrot.org/parrot/changeset/39574
Log:
[t] fix coding std failure
Modified:
trunk/src/string/api.c
Modified: trunk/src/string/api.c
==============================================================================
--- trunk/src/string/api.c Mon Jun 15 19:34:53 2009 (r39573)
+++ trunk/src/string/api.c Mon Jun 15 21:27:33 2009 (r39574)
@@ -426,7 +426,7 @@
/* a table could possibly simplify the logic */
if (a->encoding == Parrot_utf8_encoding_ptr &&
- b->charset == Parrot_ascii_charset_ptr ) {
+ b->charset == Parrot_ascii_charset_ptr) {
if (a->strlen == a->bufused) {
*e = Parrot_fixed_8_encoding_ptr;
return b->charset;
More information about the parrot-commits
mailing list