Subject: off_t fix for nfsstat.c
To: None <current-users@sun-lamp.cs.berkeley.edu>
From: None <rhealey@aggregate.com>
List: current-users
Date: 06/09/1994 10:11:21
For anybody who cares, there appears to be a residual off_t
problem in nfsstat.c. The patch below should squish it. Basically
I just added a cast to the parameter of intpr to make it a
off_t since intpr expects an off_t as the parameter.
-Rob
170c170
< intpr((off_t)nl[N_NFSSTAT].n_value);
---
> intpr(nl[N_NFSSTAT].n_value);
------------------------------------------------------------------------------