Fixed the prototype for the seek() helper

This commit is contained in:
Pierre Pronchery 2011-04-25 01:12:23 +00:00
parent e65c36ce04
commit e8b193c893

View File

@ -196,7 +196,7 @@ typedef struct _ArchPluginHelper
/* disassembly */
ssize_t (*read)(Arch * arch, void * buf, size_t size);
ssize_t (*seek)(Arch * arch, off_t offset, int whence);
off_t (*seek)(Arch * arch, off_t offset, int whence);
} ArchPluginHelper;
typedef struct _ArchPlugin ArchPlugin;