diff options
author | n_hibma <n_hibma@FreeBSD.org> | 2000-05-07 18:40:44 +0000 |
---|---|---|
committer | n_hibma <n_hibma@FreeBSD.org> | 2000-05-07 18:40:44 +0000 |
commit | d92d5a74190a70a8fa20f7f38eaddfad7cca2a5e (patch) | |
tree | 7faac972878011903ece0e68dcc770ade34fd11f /sys/dev/usb/uhub.c | |
parent | 836245c81a021b9c3527e0e7ba21b4f77f576364 (diff) | |
download | FreeBSD-src-d92d5a74190a70a8fa20f7f38eaddfad7cca2a5e.zip FreeBSD-src-d92d5a74190a70a8fa20f7f38eaddfad7cca2a5e.tar.gz |
Initialise the debug value.
Diffstat (limited to 'sys/dev/usb/uhub.c')
-rw-r--r-- | sys/dev/usb/uhub.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/usb/uhub.c b/sys/dev/usb/uhub.c index e253041..c257904 100644 --- a/sys/dev/usb/uhub.c +++ b/sys/dev/usb/uhub.c @@ -65,7 +65,7 @@ #ifdef UHUB_DEBUG #define DPRINTF(x) if (uhubdebug) logprintf x #define DPRINTFN(n,x) if (uhubdebug>(n)) logprintf x -int uhubdebug; +int uhubdebug = 0; #else #define DPRINTF(x) #define DPRINTFN(n,x) |