diff options
| author | sakumisu <[email protected]> | 2023-11-23 22:49:43 +0800 |
|---|---|---|
| committer | sakumisu <[email protected]> | 2023-11-23 22:50:07 +0800 |
| commit | 8ae4453ca43f505a3f360bfddfda1ea7d81fc6aa (patch) | |
| tree | c535124e546ae2a3cb2ccafeaecff0fdb3e88f10 | |
| parent | 86c7e435a39200248c6db6464fa7fd34b1011ba3 (diff) | |
fix en colon
| -rw-r--r-- | demo/usb_host.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/demo/usb_host.c b/demo/usb_host.c index deab98b0..963b13a3 100644 --- a/demo/usb_host.c +++ b/demo/usb_host.c @@ -154,7 +154,7 @@ int usb_msc_fatfs_test() if (res_sd == FR_OK) { res_sd = f_write(&fnew, read_write_buffer, sizeof(read_write_buffer), &fnum); if (res_sd == FR_OK) { - USB_LOG_RAW("write success, write len:%d\n", fnum); + USB_LOG_RAW("write success, write len:%d\n", fnum); } else { USB_LOG_RAW("write fail\r\n"); goto unmount; @@ -170,7 +170,7 @@ int usb_msc_fatfs_test() if (res_sd == FR_OK) { res_sd = f_read(&fnew, read_write_buffer, sizeof(read_write_buffer), &fnum); if (res_sd == FR_OK) { - USB_LOG_RAW("read success, read len:%d\n", fnum); + USB_LOG_RAW("read success, read len:%d\n", fnum); } else { USB_LOG_RAW("read fail\r\n"); goto unmount; |
