summaryrefslogtreecommitdiff
path: root/deb.c
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2015-06-22 21:57:36 -0400
committerJarkko Hietaniemi <jhi@iki.fi>2015-06-26 23:09:40 -0400
commit38d7fd8b6346a7a49f27c2717759d6888e8f720c (patch)
treec443a4c60ef6eb24e11ab22ed75764d796674251 /deb.c
parentc818886eed9600c1067557ed417280eeecff009b (diff)
downloadperl-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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/deb.c b/deb.c
index df0d60630d..02a0a7d17c 100644
--- a/deb.c
+++ b/deb.c
@@ -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, " ");