diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2014-01-22 03:19:05 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2014-01-22 03:19:05 +0000 |
commit | 7e485af7d3fe17301546fe8ed0ec2d51dd688327 (patch) | |
tree | 5d2fc748b9e1fb0ffdb013fc5ab7eb4422983440 /sys/dev/usb | |
parent | 46a9d43300138773d16b737881e569fc3817284e (diff) |
add a missing argument to a debug printf
ok jcs@
Diffstat (limited to 'sys/dev/usb')
-rw-r--r-- | sys/dev/usb/ubcmtp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/usb/ubcmtp.c b/sys/dev/usb/ubcmtp.c index bd48fb8ab03..1603c8ee719 100644 --- a/sys/dev/usb/ubcmtp.c +++ b/sys/dev/usb/ubcmtp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ubcmtp.c,v 1.2 2014/01/20 18:55:14 jcs Exp $ */ +/* $OpenBSD: ubcmtp.c,v 1.3 2014/01/22 03:19:04 jsg Exp $ */ /* * Copyright (c) 2013-2014, joshua stein <jcs@openbsd.org> @@ -737,7 +737,7 @@ ubcmtp_tp_intr(struct usbd_xfer *xfer, void *priv, usbd_status status) if (status != USBD_NORMAL_COMPLETION) { DPRINTF("%s: %s with status 0x%x\n", sc->sc_dev.dv_xname, - __func__); + __func__, status); if (status == USBD_NOT_STARTED || status == USBD_CANCELLED) return; |