This commit is contained in:
Christian Grothoff
2010-06-13 09:50:07 +00:00
parent fbb52177e2
commit ee092d7c12
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -101,7 +101,7 @@ file_reader (void *cls, uint64_t pos, char *buf, int max)
{
FILE *file = cls;
fseek (file, pos, SEEK_SET);
(void) fseek (file, pos, SEEK_SET);
return fread (buf, 1, max, file);
}