Whitespace fixes

This commit is contained in:
Marcio T 2021-11-24 09:24:02 -07:00
parent 5e33fa482c
commit 02d8cd2591
9 changed files with 7 additions and 11 deletions

View File

@ -172,5 +172,3 @@ void printn( unsigned char *c, int n ) {
c++;
}
}

View File

@ -35,4 +35,4 @@ void mac_unmount(int id) {
case fBsyErr: printf("One or more files are open\n"); break;
default: printf("Failed %d\n", err);
}
}
}

View File

@ -1,2 +1,2 @@
void mac_list_volumes();
void mac_unmount(int id);
void mac_unmount(int id);

View File

@ -47,4 +47,4 @@ OSErr iomega_eject_cartridge( int id ) {
err = iomega_set_prevent_removal(id, false);
if (err != noErr) return err;
return iomega_spin_down_and_eject(id);
}
}

View File

@ -5,4 +5,4 @@ typedef Boolean bool;
OSErr iomega_spin_up_cartridge(int id);
OSErr iomega_spin_down_and_eject(int id);
OSErr iomega_set_prevent_removal(int id, bool lock);
OSErr iomega_eject_cartridge(int id);
OSErr iomega_eject_cartridge(int id);

View File

@ -83,5 +83,3 @@ OSErr scsi_cmd(int id, void *cmd, size_t clen, void *buff, size_t siz, size_t cn
OSErr scsi_inquiry(int id, int lun, scsi_inq_reply *buff);
OSErr scsi_request_sense_data(int id, scsi_sense_reply *buff);
OSErr scsi_get_class(int id, int lun, int &dev );

View File

@ -385,4 +385,4 @@ void UpdateRunPhaseDisplay() {
void ErrorSound() {
SysBeep(10);
}
}

View File

@ -210,4 +210,4 @@ long PerformRegionTransfer(short XferCmd, void *pBuffer);
long TestTheDisk();
long GetElapsedTimeInSeconds();
void PrepareToBeginTesting();
void BumpErrorCounts(long ErrorCode);
void BumpErrorCounts(long ErrorCode);

View File

@ -374,4 +374,4 @@ void ProcessPendingMessages() {
if (GetNextEvent(everyEvent, &event)) {
DoEvent(event,NULL);
}
}
}