aboutsummaryrefslogtreecommitdiff
path: root/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 /dos2unix.c
parent1c1f5d30477e9c845c1d08b2390bd889f6b1d018 (diff)
downloadbusybox-5a9d441b2cfb4f3614971f918bb69b5e7a5ea2c9.tar.gz
Fix up some signed char vs int issues that show up on powerpc.
Diffstat (limited to 'dos2unix.c')
-rw-r--r--dos2unix.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/dos2unix.c b/dos2unix.c
index 4ca665841..e97c3ba9a 100644
--- a/dos2unix.c
+++ b/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;