replace ssize_t with int

This commit is contained in:
sakumisu
2022-02-06 19:01:24 +08:00
parent 9cc7ca1a9b
commit 3715384fee
3 changed files with 5 additions and 5 deletions

View File

@@ -161,7 +161,7 @@ int usbh_hid_get_idle(struct usbh_hubport *hport, uint8_t intf, uint8_t *buffer)
USB_NOCACHE_RAM_SECTION uint8_t report_buffer[128];
void usbh_hid_callback(void *arg, ssize_t nbytes)
void usbh_hid_callback(void *arg, int nbytes)
{
printf("nbytes:%d\r\n", nbytes);
}