[svn:parrot] r49027 - trunk/src

mikehh at svn.parrot.org mikehh at svn.parrot.org
Wed Sep 15 19:50:44 UTC 2010


Author: mikehh
Date: Wed Sep 15 19:50:44 2010
New Revision: 49027
URL: https://trac.parrot.org/parrot/changeset/49027

Log:
fix codetest failure - ASSERT_ARGS does not have a ; after and

Modified:
   trunk/src/debug.c

Modified: trunk/src/debug.c
==============================================================================
--- trunk/src/debug.c	Wed Sep 15 19:43:45 2010	(r49026)
+++ trunk/src/debug.c	Wed Sep 15 19:50:44 2010	(r49027)
@@ -3478,7 +3478,8 @@
 
 /*
 
-=item C<display_breakpoint>
+=item C<static void display_breakpoint(PDB_t *pdb, const PDB_breakpoint_t
+*breakpoint)>
 
 Displays a breakpoint.
 
@@ -3489,7 +3490,7 @@
 static void
 display_breakpoint(ARGIN(PDB_t *pdb), ARGIN(const PDB_breakpoint_t *breakpoint))
 {
-    ASSERT_ARGS(display_breakpoint);
+    ASSERT_ARGS(display_breakpoint)
 
     /* Display the breakpoint id, PC, line number (if known),
        and disabled flag. */


More information about the parrot-commits mailing list