Rewrote mkdir (and touched lots of things in the process).
[oweals/busybox.git] / coreutils / dos2unix.c
index 4ca665841641aa9136bbddc0f9a3c0d54ce62a70..e97c3ba9aa90852a190f10f25d148bd85690d381 100644 (file)
@@ -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;