Index: include/net.h =================================================================== diff -u -b -B -r1.1.1.1 net.h --- include/net.h 26 May 2004 09:45:28 -0000 1.1.1.1 +++ include/net.h 16 Aug 2004 09:33:53 -0000 @@ -373,7 +373,7 @@ /* Set callbacks */ extern void NetSetHandler(rxhand_f *); /* Set RX packet handler */ -extern void NetSetTimeout(int, thand_f *); /* Set timeout handler */ +extern void NetSetTimeout(ulong, thand_f *);/* Set timeout handler */ /* Transmit "NetTxPacket" */ extern void NetSendPacket(volatile uchar *, int); Index: net/net.c diff -u -b -B -r1.1.1.1 net.c --- net/net.c 26 May 2004 09:45:29 -0000 1.1.1.1 +++ net/net.c 16 Aug 2004 09:33:54 -0000 @@ -573,7 +573,7 @@ void -NetSetTimeout(int iv, thand_f * f) +NetSetTimeout(ulong iv, thand_f * f) { if (iv == 0) { timeHandler = (thand_f *)0;