diff options
author | n_hibma <n_hibma@FreeBSD.org> | 1999-01-13 01:09:14 +0000 |
---|---|---|
committer | n_hibma <n_hibma@FreeBSD.org> | 1999-01-13 01:09:14 +0000 |
commit | 7fa15f53015e69b3e65c07cc8624430fc775eeb6 (patch) | |
tree | d5265c3a3e922a55bd6d151dd70f66812c4f4468 /sys/dev/usb/umodem.c | |
parent | 21033cbdb850fae830dc15b5d4613b258ad065f0 (diff) | |
download | FreeBSD-src-7fa15f53015e69b3e65c07cc8624430fc775eeb6.zip FreeBSD-src-7fa15f53015e69b3e65c07cc8624430fc775eeb6.tar.gz |
Changed 'xxxdebug = 0' to '...= 1' (Brian Feldman)
Diffstat (limited to 'sys/dev/usb/umodem.c')
-rw-r--r-- | sys/dev/usb/umodem.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/usb/umodem.c b/sys/dev/usb/umodem.c index 1faac21..23f3489 100644 --- a/sys/dev/usb/umodem.c +++ b/sys/dev/usb/umodem.c @@ -68,7 +68,7 @@ #ifdef USB_DEBUG #define DPRINTF(x) if (umodemdebug) printf x #define DPRINTFN(n,x) if (umodemdebug>(n)) printf x -int umodemdebug = 0; +int umodemdebug = 1; #else #define DPRINTF(x) #define DPRINTFN(n,x) |