diff options
author | Bill Paul <wpaul@FreeBSD.org> | 1999-08-19 03:47:18 +0000 |
---|---|---|
committer | Bill Paul <wpaul@FreeBSD.org> | 1999-08-19 03:47:18 +0000 |
commit | b32ba21dfd8d267e228a84baa8e7a8e0db3210d3 (patch) | |
tree | b7c1d53a37246e8bc0309bd6b135c05b0b1a926f /sys/pci | |
parent | 1950bb45f3269e1df416e8710673a664ca24d565 (diff) | |
download | src-b32ba21dfd8d267e228a84baa8e7a8e0db3210d3.tar.gz src-b32ba21dfd8d267e228a84baa8e7a8e0db3210d3.zip |
Small tweak: in xl_rxeof(), rxstat should be u_int32_t, not u_int16_t.
Notes
Notes:
svn path=/head/; revision=50040
Diffstat (limited to 'sys/pci')
-rw-r--r-- | sys/pci/if_xl.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/pci/if_xl.c b/sys/pci/if_xl.c index 97df604711aa..be5b83ea5d18 100644 --- a/sys/pci/if_xl.c +++ b/sys/pci/if_xl.c @@ -29,7 +29,7 @@ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF * THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: if_xl.c,v 1.49 1999/08/02 21:06:16 wpaul Exp $ + * $Id: if_xl.c,v 1.50 1999/08/02 21:57:57 wpaul Exp $ */ /* @@ -163,7 +163,7 @@ #if !defined(lint) static const char rcsid[] = - "$Id: if_xl.c,v 1.49 1999/08/02 21:06:16 wpaul Exp $"; + "$Id: if_xl.c,v 1.50 1999/08/02 21:57:57 wpaul Exp $"; #endif /* @@ -1990,7 +1990,7 @@ static void xl_rxeof(sc) struct ifnet *ifp; struct xl_chain_onefrag *cur_rx; int total_len = 0; - u_int16_t rxstat; + u_int32_t rxstat; ifp = &sc->arpcom.ac_if; |