diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2015-06-22 21:57:36 -0400 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2015-06-26 23:09:40 -0400 |
commit | 38d7fd8b6346a7a49f27c2717759d6888e8f720c (patch) | |
tree | c443a4c60ef6eb24e11ab22ed75764d796674251 /deb.c | |
parent | c818886eed9600c1067557ed417280eeecff009b (diff) | |
download | perl-38d7fd8b6346a7a49f27c2717759d6888e8f720c.tar.gz |
Cannot do much if putc fails in debug output.
Coverity CID 104782 (only flagged the deb.c spot)
Diffstat (limited to 'deb.c')
-rw-r--r-- | deb.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -135,7 +135,7 @@ S_deb_stack_n(pTHX_ SV** stack_base, I32 stack_min, I32 stack_max, if (markscan <= PL_markstack + mark_max && *markscan < i) { do { ++markscan; - PerlIO_putc(Perl_debug_log, '*'); + (void)PerlIO_putc(Perl_debug_log, '*'); } while (markscan <= PL_markstack + mark_max && *markscan < i); PerlIO_printf(Perl_debug_log, " "); |