commit | 5a9d441b2cfb4f3614971f918bb69b5e7a5ea2c9 | [log] [tgz] |
---|---|---|
author | Eric Andersen <andersen@codepoet.org> | Thu May 24 14:16:28 2001 +0000 |
committer | Eric Andersen <andersen@codepoet.org> | Thu May 24 14:16:28 2001 +0000 |
tree | b6b30a570093f5a6a57b5bd8317687b5ee9ee0b3 | |
parent | 1c1f5d30477e9c845c1d08b2390bd889f6b1d018 [diff] [blame] |
Fix up some signed char vs int issues that show up on powerpc.
diff --git a/coreutils/dos2unix.c b/coreutils/dos2unix.c index 4ca6658..e97c3ba 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;