diff options
author | Pavel Roskin <proski@gnu.org> | 2000-07-14 17:24:58 +0000 |
---|---|---|
committer | Pavel Roskin <proski@gnu.org> | 2000-07-14 17:24:58 +0000 |
commit | df4532bfa390d7986a0544b93a95921d4b473ef2 (patch) | |
tree | 7381dffc6d435e1b950610f8630a6b7198dd87d8 /console-tools/loadfont.c | |
parent | ff5a9033f9dfa449d32aa7b2631a55ebfb7fbc5e (diff) |
More fixes for "signed vs. unsigned" warnings.
Diffstat (limited to 'console-tools/loadfont.c')
-rw-r--r-- | console-tools/loadfont.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/console-tools/loadfont.c b/console-tools/loadfont.c index b3f9f4f11..46a7574c0 100644 --- a/console-tools/loadfont.c +++ b/console-tools/loadfont.c @@ -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; |