X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=aac_common.c;h=812c742cf668e7ad67e6f5b502fbe6c93829f0a3;hp=70a9d77d51b320ee8511f394186528164362273a;hb=dda88dcb390a44e1f1f68f6248ed513c75dce4bf;hpb=7bf76e7907de7836f75c299dc2e828364e4f114e diff --git a/aac_common.c b/aac_common.c index 70a9d77d..812c742c 100644 --- a/aac_common.c +++ b/aac_common.c @@ -73,18 +73,18 @@ int aac_find_esds(char *buf, size_t buflen, size_t *skip, continue; i += 8; p = buf + i; - PARA_INFO_LOG("found esds@%zu, next: %x\n", i, *p); + PARA_INFO_LOG("found esds@%zu, next: %x\n", i, (unsigned)*p); if (*p == 3) i += 8; else i += 6; p = buf + i; - PARA_INFO_LOG("next: %x\n", *p); + PARA_INFO_LOG("next: %x\n", (unsigned)*p); if (*p != 4) continue; i += 18; p = buf + i; - PARA_INFO_LOG("next: %x\n", *p); + PARA_INFO_LOG("next: %x\n", (unsigned)*p); if (*p != 5) continue; i++;