Fix up some signed char vs int issues that show up on powerpc.

This commit is contained in:
Eric Andersen
2001-05-24 14:16:28 +00:00
parent 1c1f5d3047
commit 5a9d441b2c
8 changed files with 12 additions and 16 deletions

View 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;