From: Frode Solheim Date: Fri, 1 Aug 2025 12:04:36 +0000 (+0200) Subject: uae_s64 int -> uae_s64 X-Git-Url: https://git.unchartedbackwaters.co.uk/w/?a=commitdiff_plain;h=5f71cad1735866fc472c86141af46e75751f92c3;p=francis%2Fwinuae.git uae_s64 int -> uae_s64 --- diff --git a/od-win32/fsdb_mywin32.cpp b/od-win32/fsdb_mywin32.cpp index 8043c55c..99b854b3 100644 --- a/od-win32/fsdb_mywin32.cpp +++ b/od-win32/fsdb_mywin32.cpp @@ -253,7 +253,7 @@ void my_close (struct my_openfile_s *mos) xfree (mos); } -uae_s64 int my_lseek (struct my_openfile_s *mos, uae_s64 int offset, int whence) +uae_s64 my_lseek(struct my_openfile_s *mos, uae_s64 offset, int whence) { LARGE_INTEGER li, old; @@ -270,7 +270,7 @@ uae_s64 int my_lseek (struct my_openfile_s *mos, uae_s64 int offset, int whence) return -1; return old.QuadPart; } -uae_s64 int my_fsize (struct my_openfile_s *mos) +uae_s64 my_fsize(struct my_openfile_s *mos) { LARGE_INTEGER li; if (!GetFileSizeEx (mos->h, &li))