de-linted somewhat

This commit is contained in:
ceriel
1990-10-02 17:19:17 +00:00
parent 4483f237f6
commit 5ba9685e76
5 changed files with 19 additions and 16 deletions

View File

@@ -80,7 +80,7 @@ do_option(text)
error("malformed option -D%s", text);
break;
}
macro_def(str2idf(name, 0), mactext, -1, maclen, NOFLAG);
macro_def(str2idf(name, 0), mactext, -1, (int)maclen, NOFLAG);
break;
}
case 'I' : /* -Ipath : insert "path" into include list */
@@ -90,7 +90,8 @@ do_option(text)
if (++inc_total > inc_max) {
inctable = (char **)
Realloc(inctable,(inc_max+=10)*sizeof(char *));
Realloc((char *)inctable,
(unsigned)((inc_max+=10)*sizeof(char *)));
}
for(i = inc_pos++; i < inc_total; i++) {