diff options
author | Alexander Bluhm <bluhm@cvs.openbsd.org> | 2007-03-31 19:46:45 +0000 |
---|---|---|
committer | Alexander Bluhm <bluhm@cvs.openbsd.org> | 2007-03-31 19:46:45 +0000 |
commit | da5b5607d3f5d610fac49d7473f3ce0d23611203 (patch) | |
tree | 95d3e3c1939cf6487190a883d6bb569a37e970ef /sys | |
parent | f645240f4bd50f6d0657485cd8c2095d79b9cbcd (diff) |
Print correct function name in diagnostic output.
ok pedro
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/usb/usbdi.c | 4 |
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 |