From 5f71cad1735866fc472c86141af46e75751f92c3 Mon Sep 17 00:00:00 2001 From: Frode Solheim Date: Fri, 1 Aug 2025 14:04:36 +0200 Subject: [PATCH] uae_s64 int -> uae_s64 --- od-win32/fsdb_mywin32.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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)) -- 2.47.3