diff options
author | Nathan Binkert <nate@cvs.openbsd.org> | 2003-05-19 00:33:01 +0000 |
---|---|---|
committer | Nathan Binkert <nate@cvs.openbsd.org> | 2003-05-19 00:33:01 +0000 |
commit | b9b3b9b0559280fb5efccf0169e72187293ae2da (patch) | |
tree | 5a894c72e9b1cd39ccbb39b90332170e9f8b6308 /sys/dev/usb/ucom.c | |
parent | 98f3287c148c3aff4cf669aeb44bf5a301594740 (diff) |
better match netbsd
Diffstat (limited to 'sys/dev/usb/ucom.c')
-rw-r--r-- | sys/dev/usb/ucom.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/usb/ucom.c b/sys/dev/usb/ucom.c index ee5d40b300e..74869e2cffc 100644 --- a/sys/dev/usb/ucom.c +++ b/sys/dev/usb/ucom.c @@ -1,5 +1,5 @@ -/* $OpenBSD: ucom.c,v 1.17 2002/11/11 02:32:32 nate Exp $ */ -/* $NetBSD: ucom.c,v 1.47 2002/10/23 09:13:59 jdolecek Exp $ */ +/* $OpenBSD: ucom.c,v 1.18 2003/05/19 00:33:00 nate Exp $ */ +/* $NetBSD: ucom.c,v 1.49 2003/01/01 00:10:25 thorpej Exp $ */ /* * Copyright (c) 1998, 2000 The NetBSD Foundation, Inc. @@ -1111,7 +1111,7 @@ ucomreadcb(usbd_xfer_handle xfer, usbd_private_handle p, usbd_status status) return; } - usbd_get_xfer_status(xfer, NULL, (void **)&cp, &cc, NULL); + usbd_get_xfer_status(xfer, NULL, (void *)&cp, &cc, NULL); #if defined(__NetBSD__) && NRND > 0 rnd_add_uint32(&sc->sc_rndsource, cc); #endif |