]> git.draconx.ca Git - upkg.git/blobdiff - src/libupkg.c
libupkg: Add explicit conversions to stdio wrappers.
[upkg.git] / src / libupkg.c
index 2c0cf0724de05f358c5c1c86c09edcfc24b7accf..40b39136f4c3164f22732a73e33adba2b1fae65e 100644 (file)
@@ -61,27 +61,27 @@ struct upkg_private {
 /* Default I/O operations for ordinary files. */
 static size_t file_read(void *buf, size_t size, void *handle)
 {
-       return fread(buf, 1, size, handle);
+       return fread(buf, 1, size, (FILE *)handle);
 }
 
 static int file_seek(void *handle, long offset, int whence)
 {
-       return fseek(handle, offset, whence);
+       return fseek((FILE *)handle, offset, whence);
 }
 
 static long file_tell(void *handle)
 {
-       return ftell(handle);
+       return ftell((FILE *)handle);
 }
 
 static int file_eof(void *handle)
 {
-       return feof(handle);
+       return feof((FILE *)handle);
 }
 
 static int file_close(void *handle)
 {
-       return fclose(handle);
+       return fclose((FILE *)handle);
 }
 
 const struct upkg_file_ops upkg_default_fops = {