From 39cfcf63d722485cf4af14bf434edaf6cdd69922 Mon Sep 17 00:00:00 2001 From: mikehh Date: Wed, 15 Sep 2010 19:50:44 +0000 Subject: [PATCH] fix codetest failure - ASSERT_ARGS does not have a ; after and git-svn-id: https://svn.parrot.org/parrot/trunk@49027 d31e2699-5ff4-0310-a27c-f18f2fbe73fe --- src/debug.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/debug.c b/src/debug.c index 8cd3b8f508..47d1ce00fa 100644 --- a/src/debug.c +++ b/src/debug.c @@ -3478,7 +3478,8 @@ GDB_P(PARROT_INTERP, ARGIN(const char *s)) /* -=item C +=item C Displays a breakpoint. @@ -3489,7 +3490,7 @@ Displays a breakpoint. 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. */ -- 2.11.4.GIT