From 2157b039acffbecd72cd46bef00d37689aadf717 Mon Sep 17 00:00:00 2001 From: David Herrmann Date: Fri, 18 Oct 2013 17:55:56 +0200 Subject: genunifont: fix ftell() error checking We need to use signed types to actually see errors from ftell(). Fix it by using "long" for status bits now. Reported-by: Edward O'Callaghan Signed-off-by: David Herrmann --- src/genunifont.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/genunifont.c b/src/genunifont.c index caedf4a..feaa3f4 100644 --- a/src/genunifont.c +++ b/src/genunifont.c @@ -119,7 +119,7 @@ static int parse_single_file(FILE *out, FILE *in) char buf[MAX_DATA_SIZE]; struct unifont_glyph *g, **iter, *list, *last; int ret, num; - unsigned long status_max, status_cur; + long status_max, status_cur; unsigned long perc_prev, perc_now; if (fseek(in, 0, SEEK_END) != 0) { -- cgit v1.2.3