diff options
author | David Mitchell <davem@iabyn.com> | 2015-06-24 08:57:41 +0100 |
---|---|---|
committer | David Mitchell <davem@iabyn.com> | 2015-06-24 08:57:41 +0100 |
commit | 00898ccb9b2b100177f631efc1c8235eb9850fc7 (patch) | |
tree | 6957dccde91b51d6a21443738bdbcb3c07e034fe /deb.c | |
parent | 483448773198a34339142b6d3cd598c3e83c72d2 (diff) | |
download | perl-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -191,7 +191,7 @@ static const char * const si_names[] = { "DESTROY", "WARNHOOK", "DIEHOOK", - "REQUIRE" + "REQUIRE", "MULTICALL" }; #endif |