aboutsummaryrefslogtreecommitdiff
path: root/coreutils/dos2unix.c
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2001-05-24 14:16:28 +0000
committerEric Andersen <andersen@codepoet.org>2001-05-24 14:16:28 +0000
commit5a9d441b2cfb4f3614971f918bb69b5e7a5ea2c9 (patch)
treeb6b30a570093f5a6a57b5bd8317687b5ee9ee0b3 /coreutils/dos2unix.c
parent1c1f5d30477e9c845c1d08b2390bd889f6b1d018 (diff)
downloadbusybox-w32-5a9d441b2cfb4f3614971f918bb69b5e7a5ea2c9.tar.gz
busybox-w32-5a9d441b2cfb4f3614971f918bb69b5e7a5ea2c9.tar.bz2
busybox-w32-5a9d441b2cfb4f3614971f918bb69b5e7a5ea2c9.zip
Fix up some signed char vs int issues that show up on powerpc.
Diffstat (limited to 'coreutils/dos2unix.c')
-rw-r--r--coreutils/dos2unix.c2
1 files changed, 1 insertions, 1 deletions
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 @@
33 33
34// if fn is NULL then input is stdin and output is stdout 34// if fn is NULL then input is stdin and output is stdout
35static int convert(char *fn, int ConvType) { 35static int convert(char *fn, int ConvType) {
36 char c; 36 int c;
37 char *tempFn = NULL; 37 char *tempFn = NULL;
38 FILE *in = stdin, *out = stdout; 38 FILE *in = stdin, *out = stdout;
39 39