diff options
| author | hathach <[email protected]> | 2014-03-13 18:11:59 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2014-03-13 18:11:59 +0700 |
| commit | f1692c93ac7f9990490223cf924d84e1cbdcbeb6 (patch) | |
| tree | c125767ad7d26476707049784ff17324ef4f9ece /tinyusb/class | |
| parent | 8fbafc460cceb6943179c0b0613d619bb9511b3c (diff) | |
fix some warnings
Diffstat (limited to 'tinyusb/class')
| -rw-r--r-- | tinyusb/class/msc_host.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tinyusb/class/msc_host.c b/tinyusb/class/msc_host.c index 1380b1e03..e81bed258 100644 --- a/tinyusb/class/msc_host.c +++ b/tinyusb/class/msc_host.c @@ -377,7 +377,7 @@ tusb_error_t msch_open_subtask(uint8_t dev_addr, tusb_descriptor_interface_t con SUBTASK_ASSERT_STATUS(error);
//------------- SCSI Request Sense -------------//
- tusbh_msc_request_sense(dev_addr, 0, msch_buffer);
+ (void) tusbh_msc_request_sense(dev_addr, 0, msch_buffer);
osal_semaphore_wait(msch_sem_hdl, SCSI_XFER_TIMEOUT, &error);
SUBTASK_ASSERT_STATUS(error);
|
