summaryrefslogtreecommitdiff
path: root/devel/libusb
diff options
context:
space:
mode:
authorjperkin <jperkin>2013-12-11 12:34:02 +0000
committerjperkin <jperkin>2013-12-11 12:34:02 +0000
commita267884d84e61d9984d400cba8637459944bb0b8 (patch)
treea7926532b22f5bc3c4c66c39443f689e2cfee1e6 /devel/libusb
parent218c9dfa5cf5c367eb273d4bf5d24e7e8310c79a (diff)
downloadpkgsrc-a267884d84e61d9984d400cba8637459944bb0b8.tar.gz
Fix patch.
Diffstat (limited to 'devel/libusb')
-rw-r--r--devel/libusb/distinfo4
-rw-r--r--devel/libusb/patches/patch-darwin.c6
2 files changed, 5 insertions, 5 deletions
diff --git a/devel/libusb/distinfo b/devel/libusb/distinfo
index a7a844f7b04..addbeaff8e9 100644
--- a/devel/libusb/distinfo
+++ b/devel/libusb/distinfo
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.22 2013/12/10 13:51:55 jperkin Exp $
+$NetBSD: distinfo,v 1.23 2013/12/11 12:34:02 jperkin Exp $
SHA1 (libusb-0.1.12.tar.gz) = 599a5168590f66bc6f1f9a299579fd8500614807
RMD160 (libusb-0.1.12.tar.gz) = 63848df717e00fff67ab30ba86a85466370d4e8e
@@ -9,4 +9,4 @@ SHA1 (patch-ac) = cc92318e0979779f6ef03ee653bc94ee2b96a055
SHA1 (patch-ad) = f81135a5f92bf0c2e1ca921368bd39482bd3b580
SHA1 (patch-ae) = 49a01ebe66de4965f3611cf42db09703aa68c415
SHA1 (patch-af) = e46e576a589fb65488011a41df95f744230c0c6c
-SHA1 (patch-darwin.c) = 1311114a333045058b8624282b1c0a31a1c557a0
+SHA1 (patch-darwin.c) = 5547ee8fdbddb07911a65ac1fcc69459c54711cf
diff --git a/devel/libusb/patches/patch-darwin.c b/devel/libusb/patches/patch-darwin.c
index 62a924a6f46..f809581d0d5 100644
--- a/devel/libusb/patches/patch-darwin.c
+++ b/devel/libusb/patches/patch-darwin.c
@@ -1,14 +1,14 @@
-$NetBSD: patch-darwin.c,v 1.1 2013/12/10 13:51:55 jperkin Exp $
+$NetBSD: patch-darwin.c,v 1.2 2013/12/11 12:34:02 jperkin Exp $
Fix format type.
---- darwin.c.orig 2006-03-04 02:52:46.000000000 +0000
+--- darwin.c.orig 2013-12-11 12:31:51.000000000 +0000
+++ darwin.c
@@ -1064,7 +1064,7 @@ int usb_os_find_devices(struct usb_bus *
result = (*(device))->GetDeviceAddress(device, (USBDeviceAddress *)&address);
if (usb_debug >= 2)
-- fprintf(stderr, "usb_os_find_devices: Found USB device at location 0x%08lx\n", location);
+- fprintf(stderr, "usb_os_find_devices: Found USB device at location 0x%08x\n", location);
+ fprintf(stderr, "usb_os_find_devices: Found USB device at location 0x%08x\n", (unsigned int)location);
/* first byte of location appears to be associated with the device's bus */