(svn r13303) -Fix (r13301): 64bit gcc compilation was broken
authorsmatz
Tue, 27 May 2008 23:10:42 +0000
changeset 10753 428f22725618
parent 10752 332994dbea4e
child 10754 e190e710da4e
(svn r13303) -Fix (r13301): 64bit gcc compilation was broken
src/fileio.cpp
--- a/src/fileio.cpp	Tue May 27 22:02:26 2008 +0000
+++ b/src/fileio.cpp	Tue May 27 23:10:42 2008 +0000
@@ -74,7 +74,7 @@
 #endif /* LIMITED_FDS */
 
 /* Seek to a file and a position */
-void FioSeekToFile(uint8 slot, uint32 pos)
+void FioSeekToFile(uint8 slot, size_t pos)
 {
 	FILE *f;
 #if defined(LIMITED_FDS)