From 7a89f71f3632512bb2de90b0e263dfacbdc0c05b Mon Sep 17 00:00:00 2001 From: William S Fulton Date: Sat, 24 Nov 2012 14:12:25 +0000 Subject: Coverity defect suppression git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@13933 626c5289-ae23-0410-ae9c-e8d60b6d4f22 --- Source/Modules/clisp.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Modules/clisp.cxx b/Source/Modules/clisp.cxx index 3a4a5648c..7bfb6298c 100644 --- a/Source/Modules/clisp.cxx +++ b/Source/Modules/clisp.cxx @@ -132,9 +132,9 @@ int CLISP::top(Node *n) { for (len--; len >= 0; len--) { end--; - Seek(f_cl, len, SEEK_SET); + (void)Seek(f_cl, len, SEEK_SET); int ch = Getc(f_cl); - Seek(f_cl, end, SEEK_SET); + (void)Seek(f_cl, end, SEEK_SET); Putc(ch, f_cl); } -- cgit v1.2.1