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;