[svn:parrot] r48371 - branches/unshared_buffers/src/string

darbelo at svn.parrot.org darbelo at svn.parrot.org
Mon Aug 9 21:09:00 UTC 2010


Author: darbelo
Date: Mon Aug  9 21:09:00 2010
New Revision: 48371
URL: https://trac.parrot.org/parrot/changeset/48371

Log:
Make codetest happy.

Modified:
   branches/unshared_buffers/src/string/api.c

Modified: branches/unshared_buffers/src/string/api.c
==============================================================================
--- branches/unshared_buffers/src/string/api.c	Mon Aug  9 21:08:41 2010	(r48370)
+++ branches/unshared_buffers/src/string/api.c	Mon Aug  9 21:09:00 2010	(r48371)
@@ -1241,7 +1241,7 @@
     else {
         const INTVAL new_length = s->strlen - n;
 
-        if ( new_length < 0)
+        if (new_length < 0)
             return STRINGNULL;
 
         return ENCODING_GET_CODEPOINTS(interp, s, 0, new_length);


More information about the parrot-commits mailing list