diff options
author | grehan <grehan@FreeBSD.org> | 2004-01-22 07:23:36 +0000 |
---|---|---|
committer | grehan <grehan@FreeBSD.org> | 2004-01-22 07:23:36 +0000 |
commit | 2dafdd4f00f15fa15ca85cd71c1f3c02f97f0e86 (patch) | |
tree | 376d48213587a799597a88ac216bca01388a3cb4 /usr.sbin/quotaon | |
parent | f96af44358658859315aa3054e6738579d20d071 (diff) | |
download | FreeBSD-src-2dafdd4f00f15fa15ca85cd71c1f3c02f97f0e86.zip FreeBSD-src-2dafdd4f00f15fa15ca85cd71c1f3c02f97f0e86.tar.gz |
Userland signed char fixes for PPC build. Problems were using a char
return for getopt() and comparing to -1, ditto with fgetc() and EOF,
and using the kg_nice value from <sys/user.h>
Submitted by: Stefan Farfeleder <stefan@fafoe.narf.at>
Reviewed by: obrien, bde (a while back)
Tested lightly on: ppc, i386, make universe
Diffstat (limited to 'usr.sbin/quotaon')
-rw-r--r-- | usr.sbin/quotaon/quotaon.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/quotaon/quotaon.c b/usr.sbin/quotaon/quotaon.c index 3d54a27..3ade757 100644 --- a/usr.sbin/quotaon/quotaon.c +++ b/usr.sbin/quotaon/quotaon.c @@ -80,9 +80,9 @@ int main(int argc, char **argv) { register struct fstab *fs; - char ch, *qfnp, *whoami; + char *qfnp, *whoami; long argnum, done = 0; - int i, offmode = 0, errs = 0; + int ch, i, offmode = 0, errs = 0; whoami = rindex(*argv, '/') + 1; if (whoami == (char *)1) |