diff options
author | Roland McGrath <roland@gnu.org> | 2002-05-29 08:34:35 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2002-05-29 08:34:35 +0000 |
commit | a3820c3a3c372fc54a47d397e19db700023b5b06 (patch) | |
tree | 7e80baa3db57557b05755404642c14388b2562a7 /pfinet/ethernet.c | |
parent | 8b3bdb1aee2e83c5e92b7e53c5021ca7db0b9dc9 (diff) |
2002-05-29 Roland McGrath <roland@frob.com>
* ethernet.c (setup_ethernet_device): u_int -> size_t
Diffstat (limited to 'pfinet/ethernet.c')
-rw-r--r-- | pfinet/ethernet.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pfinet/ethernet.c b/pfinet/ethernet.c index f6e50a2c..1ae6e67d 100644 --- a/pfinet/ethernet.c +++ b/pfinet/ethernet.c @@ -1,5 +1,5 @@ /* - Copyright (C) 1995,96,98,99,2000 Free Software Foundation, Inc. + Copyright (C) 1995,96,98,99,2000,02 Free Software Foundation, Inc. Written by Michael I. Bushnell, p/BSG. This file is part of the GNU Hurd. @@ -196,7 +196,7 @@ void setup_ethernet_device (char *name, struct device **device) { struct net_status netstat; - u_int count; + size_t count; int net_address[2]; error_t err; struct ether_device *edev; |