X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=aac_common.c;h=812c742cf668e7ad67e6f5b502fbe6c93829f0a3;hp=70a9d77d51b320ee8511f394186528164362273a;hb=534a94f441767947874cb15d18211edf758e9277;hpb=9165680a9639a8412adef13b96e466efdbb9d806 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++;