From 0fa8453b8edbfaf9416fad7d262c9764caab11be Mon Sep 17 00:00:00 2001 From: folkert van heusden Date: Sun, 28 Apr 2024 01:29:32 +0200 Subject: [PATCH] coverity: ignoring the rc of putGAM is intentionally here --- cpu.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpu.cpp b/cpu.cpp index 3a024b6..a77d173 100644 --- a/cpu.cpp +++ b/cpu.cpp @@ -715,7 +715,7 @@ bool cpu::double_operand_instructions(const uint16_t instr) setPSW_z(result == 0); } - putGAM(g_dst, result); + (void)putGAM(g_dst, result); return true; }