From 5a9d441b2cfb4f3614971f918bb69b5e7a5ea2c9 Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Thu, 24 May 2001 14:16:28 +0000 Subject: Fix up some signed char vs int issues that show up on powerpc. --- coreutils/dos2unix.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'coreutils/dos2unix.c') diff --git a/coreutils/dos2unix.c b/coreutils/dos2unix.c index 4ca665841..e97c3ba9a 100644 --- a/coreutils/dos2unix.c +++ b/coreutils/dos2unix.c @@ -33,7 +33,7 @@ // if fn is NULL then input is stdin and output is stdout static int convert(char *fn, int ConvType) { - char c; + int c; char *tempFn = NULL; FILE *in = stdin, *out = stdout; -- cgit v1.2.3-55-g6feb