summaryrefslogtreecommitdiffstatshomepage
path: root/src/osd/windows/winfile.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/osd/windows/winfile.c')
-rw-r--r--src/osd/windows/winfile.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/osd/windows/winfile.c b/src/osd/windows/winfile.c
index 1d3ea1748a6..2afa8da23ed 100644
--- a/src/osd/windows/winfile.c
+++ b/src/osd/windows/winfile.c
@@ -202,8 +202,8 @@ file_error osd_read(osd_file *file, void *buffer, UINT64 offset, UINT32 length,
LONG upper = offset >> 32;
DWORD result;
- switch (file->type)
- {
+ switch (file->type)
+ {
case WINFILE_FILE:
// attempt to set the file pointer
result = SetFilePointer(file->handle, (UINT32)offset, &upper, FILE_BEGIN);
@@ -241,8 +241,8 @@ file_error osd_write(osd_file *file, const void *buffer, UINT64 offset, UINT32 l
LONG upper = offset >> 32;
DWORD result;
- switch (file->type)
- {
+ switch (file->type)
+ {
case WINFILE_FILE:
// attempt to set the file pointer
result = SetFilePointer(file->handle, (UINT32)offset, &upper, FILE_BEGIN);
@@ -277,8 +277,8 @@ file_error osd_write(osd_file *file, const void *buffer, UINT64 offset, UINT32 l
file_error osd_close(osd_file *file)
{
- switch (file->type)
- {
+ switch (file->type)
+ {
case WINFILE_FILE:
// close the file handle and free the file structure
CloseHandle(file->handle);