2
0
mirror of https://gitlab.isc.org/isc-projects/dhcp synced 2025-08-30 22:05:23 +00:00

getc() returns int, not char

This commit is contained in:
Ted Lemon
1996-05-17 23:09:54 +00:00
parent 67cf2a75a0
commit d48783033b
2 changed files with 2 additions and 2 deletions

View File

@@ -69,7 +69,7 @@ static int intern PROTO ((char *, int));
static int get_char (cfile)
FILE *cfile;
{
char c = getc (cfile);
int c = getc (cfile);
if (!ugflag) {
if (c == EOL) {
line++;

View File

@@ -69,7 +69,7 @@ static int intern PROTO ((char *, int));
static int get_char (cfile)
FILE *cfile;
{
char c = getc (cfile);
int c = getc (cfile);
if (!ugflag) {
if (c == EOL) {
line++;