[svn:parrot] r49026 - trunk/src

mikehh at svn.parrot.org mikehh at svn.parrot.org
Wed Sep 15 19:43:45 UTC 2010


Author: mikehh
Date: Wed Sep 15 19:43:45 2010
New Revision: 49026
URL: https://trac.parrot.org/parrot/changeset/49026

Log:
fix codetest failure - trailing spaces

Modified:
   trunk/src/debug.c

Modified: trunk/src/debug.c
==============================================================================
--- trunk/src/debug.c	Wed Sep 15 19:38:26 2010	(r49025)
+++ trunk/src/debug.c	Wed Sep 15 19:43:45 2010	(r49026)
@@ -1613,7 +1613,7 @@
 
     if (pdb->breakpoint)
         for (breakpoint = pdb->breakpoint;
-             breakpoint; 
+             breakpoint;
              breakpoint = breakpoint->next)
             display_breakpoint(pdb, breakpoint);
 
@@ -2822,7 +2822,7 @@
     /* Allocate a file block and the source buffer. */
 
     dfile = mem_gc_allocate_zeroed_typed(interp, PDB_file_t);
-    dfile->source = mem_gc_allocate_n_typed(interp, DEBUG_SOURCE_BUFFER_CHUNK, 
+    dfile->source = mem_gc_allocate_n_typed(interp, DEBUG_SOURCE_BUFFER_CHUNK,
                                                     char);
     buffer_size = DEBUG_SOURCE_BUFFER_CHUNK;
 
@@ -2856,7 +2856,7 @@
         if (ch == EOF) {
             dfile->source[dfile->size++] = '\n';
             Parrot_io_eprintf(pdb->debugger,
-                              "(Newline appended to last line of file)\n"); 
+                              "(Newline appended to last line of file)\n");
         }
 
         /* Allocate a line block and store information about the line.


More information about the parrot-commits mailing list