From 2dafdd4f00f15fa15ca85cd71c1f3c02f97f0e86 Mon Sep 17 00:00:00 2001 From: grehan Date: Thu, 22 Jan 2004 07:23:36 +0000 Subject: 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 Submitted by: Stefan Farfeleder Reviewed by: obrien, bde (a while back) Tested lightly on: ppc, i386, make universe --- usr.sbin/mixer/mixer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'usr.sbin/mixer') diff --git a/usr.sbin/mixer/mixer.c b/usr.sbin/mixer/mixer.c index f06abb3..7abac46 100644 --- a/usr.sbin/mixer/mixer.c +++ b/usr.sbin/mixer/mixer.c @@ -93,7 +93,7 @@ main(int argc, char *argv[]) int l = 0, r = 0, t = 0; char lstr[5], rstr[5]; int n = 0, lrel = 0, rrel = 0; - char ch; + int ch; char *name; -- cgit v1.1