summaryrefslogtreecommitdiff
path: root/uisimulator/common
diff options
context:
space:
mode:
Diffstat (limited to 'uisimulator/common')
-rw-r--r--uisimulator/common/io.c4
-rw-r--r--uisimulator/common/stubs.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/uisimulator/common/io.c b/uisimulator/common/io.c
index 7538788bd6..690ef39f5f 100644
--- a/uisimulator/common/io.c
+++ b/uisimulator/common/io.c
@@ -57,7 +57,7 @@
57#include "thread.h" 57#include "thread.h"
58#include "kernel.h" 58#include "kernel.h"
59#include "debug.h" 59#include "debug.h"
60#include "ata.h" /* for IF_MV2 et al. */ 60#include "ata.h" /* for IF_MV et al. */
61#include "rbpaths.h" 61#include "rbpaths.h"
62#include "load_code.h" 62#include "load_code.h"
63 63
@@ -534,7 +534,7 @@ long filesize(int fd)
534#endif 534#endif
535} 535}
536 536
537void fat_size(IF_MV2(int volume,) unsigned long* size, unsigned long* free) 537void fat_size(IF_MV(int volume,) unsigned long* size, unsigned long* free)
538{ 538{
539#ifdef HAVE_MULTIVOLUME 539#ifdef HAVE_MULTIVOLUME
540 if (volume != 0) { 540 if (volume != 0) {
diff --git a/uisimulator/common/stubs.c b/uisimulator/common/stubs.c
index 51706ca3d5..6ad0b986f3 100644
--- a/uisimulator/common/stubs.c
+++ b/uisimulator/common/stubs.c
@@ -169,7 +169,7 @@ int storage_init(void)
169 return 1; 169 return 1;
170} 170}
171 171
172int storage_write_sectors(IF_MV2(int drive,) 172int storage_write_sectors(IF_MV(int drive,)
173 unsigned long start, 173 unsigned long start,
174 int count, 174 int count,
175 const void* buf) 175 const void* buf)
@@ -197,7 +197,7 @@ int storage_write_sectors(IF_MV2(int drive,)
197 return 0; 197 return 0;
198} 198}
199 199
200int storage_read_sectors(IF_MV2(int drive,) 200int storage_read_sectors(IF_MV(int drive,)
201 unsigned long start, 201 unsigned long start,
202 int count, 202 int count,
203 void* buf) 203 void* buf)