More fixes for "signed vs. unsigned" warnings.

This commit is contained in:
Pavel Roskin
2000-07-14 17:24:58 +00:00
parent ff5a9033f9
commit df4532bfa3
4 changed files with 8 additions and 6 deletions

View File

@@ -161,7 +161,7 @@ static void loadnewfont(int fd)
{
int unit;
char inbuf[32768]; /* primitive */
int inputlth, offset;
unsigned int inputlth, offset;
/*
* We used to look at the length of the input file
@@ -187,7 +187,7 @@ static void loadnewfont(int fd)
struct psf_header psfhdr;
int fontsize;
int hastable;
int head0, head;
unsigned int head0, head;
if (inputlth < sizeof(struct psf_header))
goto no_psf;