From 2b0eeebc30336a1a7b090e1831efe2d5c0fc115b Mon Sep 17 00:00:00 2001 From: hummypkg Date: Mon, 21 Nov 2016 11:09:21 +0000 Subject: [PATCH] fix warning --- descriptor.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/descriptor.c b/descriptor.c index a80c320..35234c1 100644 --- a/descriptor.c +++ b/descriptor.c @@ -55,7 +55,7 @@ string_to_end(struct epg *epg, struct descriptor *d, int sofar, static char * read_lstring(struct epg *epg, unsigned int *len) { - int l = epg->bin[epg->offset++]; + unsigned int l = epg->bin[epg->offset++]; char *c; /* Check that there is enough file left. */