From a4b64221a092c3956abf5d00592bdd5ade189f90 Mon Sep 17 00:00:00 2001 From: Owen Shepherd Date: Wed, 26 Dec 2012 18:50:48 +0000 Subject: [PATCH] _PDCLIB_seek: Incorrect specification (used int64_t where int_fast64_t was correct) --- functions/stdio/_PDCLIB_seek.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/functions/stdio/_PDCLIB_seek.c b/functions/stdio/_PDCLIB_seek.c index 5a3f982..42c3273 100644 --- a/functions/stdio/_PDCLIB_seek.c +++ b/functions/stdio/_PDCLIB_seek.c @@ -9,7 +9,8 @@ #include #ifndef REGTEST -int_fast64_t _PDCLIB_seek( struct _PDCLIB_file_t * stream, _PDCLIB_int64_t offset, +int_fast64_t _PDCLIB_seek( struct _PDCLIB_file_t * stream, + int_fast64_t offset, int whence ) { int_fast64_t newPos; -- 2.40.0