summaryrefslogtreecommitdiffstats
path: root/sys/dev/usb/usbdi.c
diff options
context:
space:
mode:
authorbluhm <bluhm@openbsd.org>2007-03-31 19:46:44 +0000
committerbluhm <bluhm@openbsd.org>2007-03-31 19:46:44 +0000
commit6a49f5b98fd1b8e9bcdddad82c5ba4ba12fb4f86 (patch)
tree65d252e2284912085b1e432105b93ed90c21f178 /sys/dev/usb/usbdi.c
parentFix DEBUG. (diff)
downloadwireguard-openbsd-6a49f5b98fd1b8e9bcdddad82c5ba4ba12fb4f86.tar.xz
wireguard-openbsd-6a49f5b98fd1b8e9bcdddad82c5ba4ba12fb4f86.zip
Print correct function name in diagnostic output.
ok pedro
Diffstat (limited to 'sys/dev/usb/usbdi.c')
-rw-r--r--sys/dev/usb/usbdi.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/usb/usbdi.c b/sys/dev/usb/usbdi.c
index d32c1436b2a..fd4c1aa3f16 100644
--- a/sys/dev/usb/usbdi.c
+++ b/sys/dev/usb/usbdi.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: usbdi.c,v 1.27 2006/08/14 00:32:10 pascoe Exp $ */
+/* $OpenBSD: usbdi.c,v 1.28 2007/03/31 19:46:44 bluhm Exp $ */
/* $NetBSD: usbdi.c,v 1.103 2002/09/27 15:37:38 provos Exp $ */
/* $FreeBSD: src/sys/dev/usb/usbdi.c,v 1.28 1999/11/17 22:33:49 n_hibma Exp $ */
@@ -538,7 +538,7 @@ usbd_abort_pipe(usbd_pipe_handle pipe)
#ifdef DIAGNOSTIC
if (pipe == NULL) {
- printf("usbd_close_pipe: pipe==NULL\n");
+ printf("usbd_abort_pipe: pipe==NULL\n");
return (USBD_NORMAL_COMPLETION);
}
#endif