summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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);
}