changeset 12115:cfe440920be2

10l for the orignial author and 1000l for me for commiting a broken workaround
author faust3
date Sun, 04 Apr 2004 10:38:57 +0000
parents 83965b667c12
children 8d476d8a16ae
files osdep/fseeko.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/osdep/fseeko.c	Sat Apr 03 17:14:07 2004 +0000
+++ b/osdep/fseeko.c	Sun Apr 04 10:38:57 2004 +0000
@@ -29,7 +29,7 @@
 int
 fseeko(FILE *stream, off_t offset, int whence)
 {
-	off_t floc;
+	fpos_t floc;
 	struct stat filestat;
 
 	switch (whence)
@@ -75,7 +75,7 @@
 off_t
 ftello(FILE *stream)
 {
-	off_t floc;
+	fpos_t floc;
 
 	if (fgetpos(stream, &floc) != 0)
 		return -1;