summaryrefslogtreecommitdiff
path: root/firmware/test/fat/ata-sim.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/test/fat/ata-sim.c')
-rw-r--r--firmware/test/fat/ata-sim.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/test/fat/ata-sim.c b/firmware/test/fat/ata-sim.c
index 04cdadb6ce..63abc58084 100644
--- a/firmware/test/fat/ata-sim.c
+++ b/firmware/test/fat/ata-sim.c
@@ -14,7 +14,7 @@ int ata_read_sectors(unsigned long start, unsigned char count, void* buf)
14 DEBUGF("[Reading %d blocks: 0x%lx to 0x%lx]\n", 14 DEBUGF("[Reading %d blocks: 0x%lx to 0x%lx]\n",
15 count, start, start+count-1); 15 count, start, start+count-1);
16 else 16 else
17 DEBUGF("[Reading block 0x%lx, %d]\n", start, count); 17 DEBUGF("[Reading block 0x%lx]\n", start);
18 18
19 if(fseek(file,start*BLOCK_SIZE,SEEK_SET)) { 19 if(fseek(file,start*BLOCK_SIZE,SEEK_SET)) {
20 perror("fseek"); 20 perror("fseek");