summaryrefslogtreecommitdiff
path: root/deb.c
diff options
context:
space:
mode:
authorDavid Mitchell <davem@iabyn.com>2015-06-24 08:57:41 +0100
committerDavid Mitchell <davem@iabyn.com>2015-06-24 08:57:41 +0100
commit00898ccb9b2b100177f631efc1c8235eb9850fc7 (patch)
tree6957dccde91b51d6a21443738bdbcb3c07e034fe /deb.c
parent483448773198a34339142b6d3cd598c3e83c72d2 (diff)
downloadperl-00898ccb9b2b100177f631efc1c8235eb9850fc7.tar.gz
fix si_names context debugging names
I recently added a new context stack type, MULTICALL. The table si_names[], which contains the stack type names to display with -Dsv a new label added, "MULTICALL", but the previous label didn't have a comma after it, so the two labels were actually being concatenated. Spotted by Coverity
Diffstat (limited to 'deb.c')
-rw-r--r--deb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/deb.c b/deb.c
index 4ae101d0fc..df0d60630d 100644
--- a/deb.c
+++ b/deb.c
@@ -191,7 +191,7 @@ static const char * const si_names[] = {
"DESTROY",
"WARNHOOK",
"DIEHOOK",
- "REQUIRE"
+ "REQUIRE",
"MULTICALL"
};
#endif