common/usb.c: fix incorrect escape sequence
Signed off by: Gururaja Hebbar <gururajakr@sanyo.co.in>
This commit is contained in:
parent
4ce1e23b5e
commit
727f633346
|
@ -1088,7 +1088,7 @@ int usb_hub_configure(struct usb_device *dev)
|
||||||
/* silence compiler warning if USB_BUFSIZ is > 256 [= sizeof(char)] */
|
/* silence compiler warning if USB_BUFSIZ is > 256 [= sizeof(char)] */
|
||||||
i = descriptor->bLength;
|
i = descriptor->bLength;
|
||||||
if (i > USB_BUFSIZ) {
|
if (i > USB_BUFSIZ) {
|
||||||
USB_HUB_PRINTF("usb_hub_configure: failed to get hub descriptor - too long: %d\N",
|
USB_HUB_PRINTF("usb_hub_configure: failed to get hub descriptor - too long: %d\n",
|
||||||
descriptor->bLength);
|
descriptor->bLength);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue