diff options
author | Marcus Glocker <mglocker@cvs.openbsd.org> | 2008-06-15 17:07:19 +0000 |
---|---|---|
committer | Marcus Glocker <mglocker@cvs.openbsd.org> | 2008-06-15 17:07:19 +0000 |
commit | 06f18aafcdbf1a8e6035c737b54d271c546aad2f (patch) | |
tree | 5b43f51076bd7f1bb0b9e52018c2dc82e5002e60 /sys/dev | |
parent | 4ebfc1c06999a5a51cd5f479d2f728711304ff07 (diff) |
One more printf -> DPRINTF in the USB xfer callback.
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/usb/uvideo.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/usb/uvideo.c b/sys/dev/usb/uvideo.c index d63892d236f..8082ab423c9 100644 --- a/sys/dev/usb/uvideo.c +++ b/sys/dev/usb/uvideo.c @@ -1,4 +1,4 @@ -/* $OpenBSD: uvideo.c,v 1.38 2008/06/15 16:58:57 mglocker Exp $ */ +/* $OpenBSD: uvideo.c,v 1.39 2008/06/15 17:07:18 mglocker Exp $ */ /* * Copyright (c) 2008 Robert Nagy <robert@openbsd.org> @@ -1136,7 +1136,7 @@ uvideo_vs_cb(usbd_xfer_handle xfer, usbd_private_handle priv, DPRINTF(2, "%s: %s\n", DEVNAME(sc), __func__); if (status != USBD_NORMAL_COMPLETION) { - printf("%s: %s: %s\n", DEVNAME(sc), __func__, + DPRINTF(1, "%s: %s: %s\n", DEVNAME(sc), __func__, usbd_errstr(status)); return; } |