cables: verbose type coherency

This commit is contained in:
Gwenhael Goavec-Merou
2023-07-30 08:39:15 +02:00
parent 469e1c3669
commit 4bf4b94bbb
18 changed files with 25 additions and 29 deletions
+2 -2
View File
@@ -144,8 +144,8 @@ int CH347Jtag::setClk(const uint8_t &factor) {
return 0;
}
CH347Jtag::CH347Jtag(uint32_t clkHZ, uint8_t verbose):
_verbose(verbose), dev_handle(NULL), usb_ctx(NULL)
CH347Jtag::CH347Jtag(uint32_t clkHZ, int8_t verbose):
_verbose(verbose>1), dev_handle(NULL), usb_ctx(NULL)
{
int actual_length = 0;
struct libusb_device_descriptor desc;