diff options
Diffstat (limited to 'src/iphone.c')
-rw-r--r-- | src/iphone.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/iphone.c b/src/iphone.c index a0b00d6..81d6870 100644 --- a/src/iphone.c +++ b/src/iphone.c @@ -61,7 +61,8 @@ iphone_error_t iphone_get_device(iphone_device_t * device) for (dev = bus->devices; dev; dev = dev->next) { if (dev->descriptor.idVendor == 0x05ac && (dev->descriptor.idProduct == 0x1290 || - dev->descriptor.idProduct == 0x1291 || dev->descriptor.idProduct == 0x1292 || dev->descriptor.idProduct == 0x1293) + dev->descriptor.idProduct == 0x1291 || dev->descriptor.idProduct == 0x1292 + || dev->descriptor.idProduct == 0x1293) ) { phone->__device = dev; phone->device = usb_open(phone->__device); |