summaryrefslogtreecommitdiffstatshomepage
path: root/src/lib/formats
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/formats')
-rw-r--r--src/lib/formats/ace_tap.h2
-rw-r--r--src/lib/formats/d88_dsk.c4
-rw-r--r--src/lib/formats/flopimg.c2
-rw-r--r--src/lib/formats/xdf_dsk.h4
4 files changed, 6 insertions, 6 deletions
diff --git a/src/lib/formats/ace_tap.h b/src/lib/formats/ace_tap.h
index 8b286473e48..382d97697a4 100644
--- a/src/lib/formats/ace_tap.h
+++ b/src/lib/formats/ace_tap.h
@@ -11,7 +11,7 @@
#include "cassimg.h"
-struct ace_tape_t
+struct ace_tape_t
{
UINT8 hdr_type;
UINT8 hdr_name[10];
diff --git a/src/lib/formats/d88_dsk.c b/src/lib/formats/d88_dsk.c
index 950e04495b4..3595384a191 100644
--- a/src/lib/formats/d88_dsk.c
+++ b/src/lib/formats/d88_dsk.c
@@ -446,7 +446,7 @@ int d88_format::identify(io_generic *io, UINT32 form_factor)
{
int size = io_generic_size(io);
UINT8 h[32];
-
+
io_generic_read(io, h, 0, 32);
if((LITTLE_ENDIANIZE_INT32(*(UINT32 *)(h+0x1c)) == size) &&
(h[0x1b] == 0x00 || h[0x1b] == 0x10 || h[0x1b] == 0x20 || h[0x1b] == 0x30 || h[0x1b] == 0x40))
@@ -458,7 +458,7 @@ int d88_format::identify(io_generic *io, UINT32 form_factor)
bool d88_format::load(io_generic *io, UINT32 form_factor, floppy_image *image)
{
UINT8 h[32];
-
+
io_generic_read(io, h, 0, 32);
int cell_count = 0;
diff --git a/src/lib/formats/flopimg.c b/src/lib/formats/flopimg.c
index c1ab25eb1d6..46eb16a7c56 100644
--- a/src/lib/formats/flopimg.c
+++ b/src/lib/formats/flopimg.c
@@ -2449,4 +2449,4 @@ void floppy_image_format_t::get_track_data_fm_pc(int track, int head, floppy_ima
} else
memset(sd, 0, sector_size);
}
-} \ No newline at end of file
+}
diff --git a/src/lib/formats/xdf_dsk.h b/src/lib/formats/xdf_dsk.h
index 3b01cdd6d2d..64e02732df9 100644
--- a/src/lib/formats/xdf_dsk.h
+++ b/src/lib/formats/xdf_dsk.h
@@ -1,8 +1,8 @@
/*********************************************************************
- formats/xdf_dsk.h
+ formats/xdf_dsk.h
- x68k bare-bones formats
+ x68k bare-bones formats
*********************************************************************/