aboutsummaryrefslogtreecommitdiff
path: root/dos2unix.c
diff options
context:
space:
mode:
authorandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2001-05-24 14:16:28 +0000
committerandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2001-05-24 14:16:28 +0000
commit85282c7ca61ab22640ba11e8e1234eaaa37a26f3 (patch)
treeb6b30a570093f5a6a57b5bd8317687b5ee9ee0b3 /dos2unix.c
parent20e04555a65fc8ed3365b780dc95e6eeb2b7ebca (diff)
downloadbusybox-w32-85282c7ca61ab22640ba11e8e1234eaaa37a26f3.tar.gz
busybox-w32-85282c7ca61ab22640ba11e8e1234eaaa37a26f3.tar.bz2
busybox-w32-85282c7ca61ab22640ba11e8e1234eaaa37a26f3.zip
Fix up some signed char vs int issues that show up on powerpc.
git-svn-id: svn://busybox.net/trunk/busybox@2719 69ca8d6d-28ef-0310-b511-8ec308f3f277
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 @@
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