summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilliam S Fulton <wsf@fultondesigns.co.uk>2012-11-24 14:12:25 +0000
committerWilliam S Fulton <wsf@fultondesigns.co.uk>2012-11-24 14:12:25 +0000
commit7a89f71f3632512bb2de90b0e263dfacbdc0c05b (patch)
tree37e1d71c5959b3d9c24e29fe4adabbc22612f73d
parent0d2c4590462d222ccd6481fcf0db85f97eedb769 (diff)
downloadswig-7a89f71f3632512bb2de90b0e263dfacbdc0c05b.tar.gz
Coverity defect suppression
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@13933 626c5289-ae23-0410-ae9c-e8d60b6d4f22
-rw-r--r--Source/Modules/clisp.cxx4
1 files 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);
}