From 4425241b7807d71586fa14290b41df4464c999da Mon Sep 17 00:00:00 2001 From: Mark Pizzolato Date: Sun, 17 Mar 2013 12:21:56 -0700 Subject: [PATCH] OSX fix for recent sim_disk changes --- sim_fio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sim_fio.c b/sim_fio.c index 3a3ef5e6..fd7ee5a1 100644 --- a/sim_fio.c +++ b/sim_fio.c @@ -329,7 +329,7 @@ return (t_offset)(ftello64 (st)); #if defined (__APPLE__) || defined (__FreeBSD__) #define S_SIM_IO_FSEEK_EXT_ 1 -int sim_fseek (FILE *st, t_offset xpos, int origin) +int sim_fseeko (FILE *st, t_offset xpos, int origin) { return fseeko (st, (off_t)xpos, origin); }