[svn:parrot] r45951 - trunk/src/dynpmc

mikehh at svn.parrot.org mikehh at svn.parrot.org
Sat Apr 24 01:20:35 UTC 2010


Author: mikehh
Date: Sat Apr 24 01:20:35 2010
New Revision: 45951
URL: https://trac.parrot.org/parrot/changeset/45951

Log:
fix codetest failure - There should be no space between a function name and the following open parenthesis

Modified:
   trunk/src/dynpmc/gziphandle.pmc

Modified: trunk/src/dynpmc/gziphandle.pmc
==============================================================================
--- trunk/src/dynpmc/gziphandle.pmc	Sat Apr 24 01:16:47 2010	(r45950)
+++ trunk/src/dynpmc/gziphandle.pmc	Sat Apr 24 01:20:35 2010	(r45951)
@@ -82,7 +82,7 @@
         path = Parrot_str_to_cstring(INTERP, filename);
         if (has_mode)
             mod = Parrot_str_to_cstring(INTERP, mode);
-        file = gzopen (path, mod);
+        file = gzopen(path, mod);
         Parrot_str_free_cstring(path);
         if (has_mode)
             Parrot_str_free_cstring(mod);


More information about the parrot-commits mailing list