From 854f2ec37d4ec973c249fcbaa7cc22a4152befe0 Mon Sep 17 00:00:00 2001 From: Richard Cornwell Date: Fri, 7 Jun 2019 20:20:12 -0400 Subject: [PATCH] ICL1900: Clean up coverity error. --- ICL1900/icl1900_cpu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ICL1900/icl1900_cpu.c b/ICL1900/icl1900_cpu.c index 6036f34..fa94e94 100644 --- a/ICL1900/icl1900_cpu.c +++ b/ICL1900/icl1900_cpu.c @@ -2669,7 +2669,7 @@ cpu_show_hist(FILE * st, UNIT * uptr, int32 val, CONST void *desc) h->rc & M22 , h->ea, h->xr, h->ra, h->rb, h->rr, h->c, h->v, h->e, h->mode); v = h->op; - fprint_sym(st, h->rc & M22, &v, &cpu_unit[0], SWMASK('M')); + (void)fprint_sym(st, h->rc & M22, &v, &cpu_unit[0], SWMASK('M')); fputc('\n', st); /* end line */ } /* end else instruction */ } /* end for */