remove error message when complete transaction fails

This commit is contained in:
Laurent Vivier
2008-08-12 23:51:40 +00:00
parent d3d9a428a5
commit 5f09d45ad9
-4
View File
@@ -85,11 +85,7 @@ int scsi_command(int target, unsigned char* cdb, int count, TIB_t* tib)
complete:
err = SCSIComplete(&stat, &message, COMPLETION_TIMEOUT);
if (err != noErr)
{
printf("Cannot complete transaction %d %d(%d)\n",
stat, message, err);
return err;
}
return noErr;
}