X-Git-Url: https://git.ao2.it/libam7xxx.git/blobdiff_plain/860428c1b8ee26b327ec3c9fb8943fd17a49d755..f0d81ee8d2cdfc6102e0f401e89a44edc8e7b6dc:/src/am7xxx.c diff --git a/src/am7xxx.c b/src/am7xxx.c index 3e6b461..b66a4ee 100644 --- a/src/am7xxx.c +++ b/src/am7xxx.c @@ -111,6 +111,7 @@ static const struct am7xxx_usb_device_descriptor supported_devices[] = { .product_id = 0x0016, .configuration = 2, .interface_number = 0, + .quirks = AM7XXX_QUIRK_NO_POWER_MODE | AM7XXX_QUIRK_NO_ZOOM_MODE, }, { .name = "Philips/Sagemcom PicoPix 2330", @@ -667,7 +668,7 @@ typedef enum { static int scan_devices(am7xxx_context *ctx, scan_op op, unsigned int open_device_index, am7xxx_device **dev) { - int num_devices; + ssize_t num_devices; libusb_device** list; unsigned int current_index; int i; @@ -790,7 +791,7 @@ out: AM7XXX_PUBLIC int am7xxx_init(am7xxx_context **ctx) { - int ret = 0; + int ret; *ctx = malloc(sizeof(**ctx)); if (*ctx == NULL) {