diff options
author | n_hibma <n_hibma@FreeBSD.org> | 1999-01-22 01:02:24 +0000 |
---|---|---|
committer | n_hibma <n_hibma@FreeBSD.org> | 1999-01-22 01:02:24 +0000 |
commit | 4b60b25595bc96a006d313e04808e0bf558ab3e7 (patch) | |
tree | 73c3cbdb1334c96d15a7fbe32c1f2fb6fd0bb29a | |
parent | 4f6fd60891a30cb8a33a21b69175af28c379dd56 (diff) | |
download | FreeBSD-src-4b60b25595bc96a006d313e04808e0bf558ab3e7.zip FreeBSD-src-4b60b25595bc96a006d313e04808e0bf558ab3e7.tar.gz |
forgotten in previous commit: Lowered default debug level
-rw-r--r-- | sys/dev/usb/ums.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/usb/ums.c b/sys/dev/usb/ums.c index 5e61216..ac0ad99 100644 --- a/sys/dev/usb/ums.c +++ b/sys/dev/usb/ums.c @@ -77,7 +77,7 @@ #ifdef USB_DEBUG #define DPRINTF(x) if (umsdebug) printf x #define DPRINTFN(n,x) if (umsdebug>(n)) printf x -int umsdebug = 6; +int umsdebug = 1; #else #define DPRINTF(x) #define DPRINTFN(n,x) |