ftdi-la: Fix VID/PID format in a log message.
Before: 0x 403:0x6001 After: 0x0403:0x6001
This commit is contained in:
parent
01ae826ba3
commit
66e19f47f4
|
@ -107,7 +107,7 @@ static void scan_device(struct ftdi_context *ftdic,
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!desc) {
|
if (!desc) {
|
||||||
sr_spew("Unsupported FTDI device 0x%4x:0x%4x.",
|
sr_spew("Unsupported FTDI device 0x%04x:0x%04x.",
|
||||||
usb_desc.idVendor, usb_desc.idProduct);
|
usb_desc.idVendor, usb_desc.idProduct);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue