On Thu, 2018-11-15 at 18:58 -0500, David H. Gutteridge wrote:
> "Emmanuel Dreyfus" writes:
> > Module Name:    src
> > Committed By:   manu
> > Date:           Thu Nov 15 02:35:23 UTC 2018
> > 
> > Modified Files:
> >        src/sys/dev/usb: usb_quirks.c usb_quirks.h usbdi.c
> > 
> > Log Message:
> > Workaround NBP PN533 USB toggle bit bugs
> 
> Hello,
> 
> This has broken a macppc build for me as follows:
[...]

There's just a stray cast missing:

--- usbdi.c.orig        2018-11-15 16:30:14.366542013 -0500
+++ usbdi.c     2018-11-15 19:06:15.043902962 -0500
@@ -924,7 +924,7 @@
            !usbd_xfer_isread(xfer)) {
                USBHIST_LOG(usbdebug, "Possible output ack miss for xfer %#jx: "
                    "hiding write timeout to %d.%s for %d bytes written",
-                   xfer, curlwp->l_proc->p_pid, curlwp->l_lid,
+                   (uintptr_t)xfer, curlwp->l_proc->p_pid, curlwp->l_lid,
                    xfer->ux_length);
 
                xfer->ux_status = USBD_NORMAL_COMPLETION;

No other issues to report with the build.

Dave


Reply via email to