summaryrefslogtreecommitdiff
path: root/regexec.c
diff options
context:
space:
mode:
authorRafael Garcia-Suarez <rgarciasuarez@gmail.com>2006-11-02 11:01:29 +0000
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>2006-11-02 11:01:29 +0000
commitf9c6ae86dc1f6723c795186e5f64836b2e6c2f01 (patch)
tree2b2a6b1a512942470b92279933eac584f2237564 /regexec.c
parent6a8363ef2fc984d5f5904d9ae083a612bd6c80b6 (diff)
downloadperl-f9c6ae86dc1f6723c795186e5f64836b2e6c2f01.tar.gz
Silence a gcc warning
p4raw-id: //depot/perl@29186
Diffstat (limited to 'regexec.c')
-rw-r--r--regexec.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/regexec.c b/regexec.c
index 55a90d0d9b..2380b3e5fd 100644
--- a/regexec.c
+++ b/regexec.c
@@ -4679,13 +4679,13 @@ yes:
PL_regmatch_slab = PL_regmatch_slab->prev;
st = SLAB_LAST(PL_regmatch_slab);
}
- DEBUG_STATE_r(
+ DEBUG_STATE_r({
if (no_final) {
DEBUG_STATE_pp("pop (no final)");
} else {
DEBUG_STATE_pp("pop (yes)");
}
- );
+ });
depth--;
}
#else