summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcus Meissner <marcus@jet.franken.de>2023-04-16 10:52:47 +0200
committerMarcus Meissner <marcus@jet.franken.de>2023-04-16 10:52:47 +0200
commitbd9371f79b4b9ee00217b8e252e2c1707da7b77a (patch)
tree75087b1a55fc0b4ff75a7f2568b0a6d6b379364a
parent237a9f9e17e26acc40105e724ab1ec7dbfe34582 (diff)
downloadlibmtp-bd9371f79b4b9ee00217b8e252e2c1707da7b77a.tar.gz
fixed paste error vendor/product id
-rw-r--r--src/libopenusb1-glue.c2
-rw-r--r--src/libusb-glue.c2
-rw-r--r--src/libusb1-glue.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/libopenusb1-glue.c b/src/libopenusb1-glue.c
index c93750d..1438890 100644
--- a/src/libopenusb1-glue.c
+++ b/src/libopenusb1-glue.c
@@ -700,7 +700,7 @@ void dump_usbinfo(PTP_USB *ptp_usb) {
LIBMTP_INFO(" Vendor: %s\n", ptp_usb->rawdevice.device_entry.vendor);
LIBMTP_INFO(" Vendor id: 0x%04x\n", ptp_usb->rawdevice.device_entry.vendor_id);
LIBMTP_INFO(" Product: %s\n", ptp_usb->rawdevice.device_entry.product);
- LIBMTP_INFO(" Vendor id: 0x%04x\n", ptp_usb->rawdevice.device_entry.product_id);
+ LIBMTP_INFO(" Product id: 0x%04x\n", ptp_usb->rawdevice.device_entry.product_id);
LIBMTP_INFO(" Device flags: 0x%08x\n", ptp_usb->rawdevice.device_entry.device_flags);
// TODO: (void) probe_device_descriptor(dev, stdout);
}
diff --git a/src/libusb-glue.c b/src/libusb-glue.c
index 1ed57c6..295ed11 100644
--- a/src/libusb-glue.c
+++ b/src/libusb-glue.c
@@ -727,7 +727,7 @@ void dump_usbinfo(PTP_USB *ptp_usb)
LIBMTP_INFO(" Vendor: %s\n", ptp_usb->rawdevice.device_entry.vendor);
LIBMTP_INFO(" Vendor id: 0x%04x\n", ptp_usb->rawdevice.device_entry.vendor_id);
LIBMTP_INFO(" Product: %s\n", ptp_usb->rawdevice.device_entry.product);
- LIBMTP_INFO(" Vendor id: 0x%04x\n", ptp_usb->rawdevice.device_entry.product_id);
+ LIBMTP_INFO(" Product id: 0x%04x\n", ptp_usb->rawdevice.device_entry.product_id);
LIBMTP_INFO(" Device flags: 0x%08x\n", ptp_usb->rawdevice.device_entry.device_flags);
(void) probe_device_descriptor(dev, stdout);
}
diff --git a/src/libusb1-glue.c b/src/libusb1-glue.c
index 1323545..6cda999 100644
--- a/src/libusb1-glue.c
+++ b/src/libusb1-glue.c
@@ -748,7 +748,7 @@ void dump_usbinfo(PTP_USB *ptp_usb)
LIBMTP_INFO(" Vendor: %s\n", ptp_usb->rawdevice.device_entry.vendor);
LIBMTP_INFO(" Vendor id: 0x%04x\n", ptp_usb->rawdevice.device_entry.vendor_id);
LIBMTP_INFO(" Product: %s\n", ptp_usb->rawdevice.device_entry.product);
- LIBMTP_INFO(" Vendor id: 0x%04x\n", ptp_usb->rawdevice.device_entry.product_id);
+ LIBMTP_INFO(" Product id: 0x%04x\n", ptp_usb->rawdevice.device_entry.product_id);
LIBMTP_INFO(" Device flags: 0x%08x\n", ptp_usb->rawdevice.device_entry.device_flags);
(void) probe_device_descriptor(dev, stdout);
}