From e8b193c893c2c31317dbc5a80054948dc8eb2d63 Mon Sep 17 00:00:00 2001 From: Pierre Pronchery Date: Mon, 25 Apr 2011 01:12:23 +0000 Subject: [PATCH] Fixed the prototype for the seek() helper --- include/Asm/arch.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/Asm/arch.h b/include/Asm/arch.h index 31443d6..b1832d5 100644 --- a/include/Asm/arch.h +++ b/include/Asm/arch.h @@ -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;