[svn:parrot] r48836 - trunk/src/string/encoding

mikehh at svn.parrot.org mikehh at svn.parrot.org
Tue Sep 7 23:44:11 UTC 2010


Author: mikehh
Date: Tue Sep  7 23:44:11 2010
New Revision: 48836
URL: https://trac.parrot.org/parrot/changeset/48836

Log:
fix codetest failure - line length

Modified:
   trunk/src/string/encoding/ascii.c

Modified: trunk/src/string/encoding/ascii.c
==============================================================================
--- trunk/src/string/encoding/ascii.c	Tue Sep  7 23:35:33 2010	(r48835)
+++ trunk/src/string/encoding/ascii.c	Tue Sep  7 23:44:11 2010	(r48836)
@@ -284,7 +284,8 @@
 
 PARROT_WARN_UNUSED_RESULT
 static INTVAL
-ascii_find_cclass(PARROT_INTERP, INTVAL flags, ARGIN(const STRING *src), UINTVAL offset, UINTVAL count)
+ascii_find_cclass(PARROT_INTERP, INTVAL flags, ARGIN(const STRING *src), UINTVAL offset,
+                    UINTVAL count)
 {
     ASSERT_ARGS(ascii_find_cclass)
     const unsigned char *contents = (const unsigned char *)src->strstart;


More information about the parrot-commits mailing list