]> git.ipfire.org Git - thirdparty/tvheadend.git/commitdiff
seen is a unsigned type
authorhochwasser <hochwasser@users.noreply.github.com>
Mon, 3 May 2021 20:16:22 +0000 (22:16 +0200)
committerFlole998 <Flole998@users.noreply.github.com>
Tue, 4 May 2021 12:40:14 +0000 (14:40 +0200)
Change the format string from d to u. seen is uint32_t -> line 1192

src/bouquet.c

index d39c5e748465daffc995be6a5f6768268a6bd3a3..a8fc86f49a0607241e17b7e6d141ec75a55cc231 100644 (file)
@@ -1232,7 +1232,7 @@ next:
     while (*data && (*data == '\r' || *data == '\n')) data++;
   }
   bouquet_completed(bq, seen);
-  tvhinfo(LS_BOUQUET, "parsed Enigma%d bouquet %s (%d services)", ver, bq->bq_name, seen);
+  tvhinfo(LS_BOUQUET, "parsed Enigma%d bouquet %s (%u services)", ver, bq->bq_name, seen);
   return 0;
 }