Suppress some unchecked return value warnings for Coverity

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@13902 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
William S Fulton 2012-11-18 00:44:19 +00:00
commit 475c6c6ce0
3 changed files with 4 additions and 4 deletions

View file

@ -584,7 +584,7 @@ static List *find_args(String *s, int ismacro, String *macro_name) {
if (c != '(') {
/* Not a macro, bail out now! */
assert(pos != -1);
Seek(s, pos, SEEK_SET);
(void)Seek(s, pos, SEEK_SET);
Delete(args);
return 0;
}