]> git.unchartedbackwaters.co.uk Git - francis/winuae.git/commitdiff
uae_s64 int -> uae_s64
authorFrode Solheim <frode@fs-uae.net>
Fri, 1 Aug 2025 12:04:36 +0000 (14:04 +0200)
committerFrode Solheim <frode@fs-uae.net>
Fri, 1 Aug 2025 12:09:21 +0000 (14:09 +0200)
od-win32/fsdb_mywin32.cpp

index 8043c55ca647be00aa486e030658be628b37ae8a..99b854b39c49fc5dc4be7866c541f2f956dd0c5a 100644 (file)
@@ -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))