diff options
author | Eric Andersen | 2001-05-24 14:16:28 +0000 |
---|---|---|
committer | Eric Andersen | 2001-05-24 14:16:28 +0000 |
commit | 5a9d441b2cfb4f3614971f918bb69b5e7a5ea2c9 (patch) | |
tree | b6b30a570093f5a6a57b5bd8317687b5ee9ee0b3 /coreutils/dos2unix.c | |
parent | 1c1f5d30477e9c845c1d08b2390bd889f6b1d018 (diff) | |
download | busybox-5a9d441b2cfb4f3614971f918bb69b5e7a5ea2c9.zip busybox-5a9d441b2cfb4f3614971f918bb69b5e7a5ea2c9.tar.gz |
Fix up some signed char vs int issues that show up on powerpc.
Diffstat (limited to 'coreutils/dos2unix.c')
-rw-r--r-- | coreutils/dos2unix.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |