Skip to content
Snippets Groups Projects
Commit 758b3e78 authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Maybe address Coverity issue.

parent 6b7aad6a
No related branches found
No related tags found
No related merge requests found
......@@ -37,7 +37,7 @@ bool sauce_fread_record(FILE* fp, sauce_record_t* record)
&& memcmp(record->id, SAUCE_ID, SAUCE_LEN_ID) == 0
&& memcmp(record->ver, SAUCE_VERSION, SAUCE_LEN_VERSION) == 0;
fseeko(fp, offset, SEEK_SET);
(void)fseeko(fp, offset, SEEK_SET);
return result;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment