ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/cebix/BasiliskII/src/slirp/slirp.c
(Generate patch)

Comparing BasiliskII/src/slirp/slirp.c (file contents):
Revision 1.5 by gbeauche, 2006-04-02T21:06:50Z vs.
Revision 1.6 by gbeauche, 2006-04-26T06:26:14Z

# Line 333 | Line 333 | int slirp_select_fill(int *pnfds,
333           * Adjust the timeout to make the minimum timeout
334           * 2ms (XXX?) to lessen the CPU load
335           */
336 <        if (timeout < FAST_TIMO)
337 <                timeout = FAST_TIMO;
336 >        if (timeout < (FAST_TIMO * 1000))
337 >                timeout = FAST_TIMO * 1000;
338  
339          return timeout;
340   }      

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines