This fixes:
wma_common.c:41: warning: format '%zd' expects type 'signed size_t', but argument 5 has type 'int'
wma_common.c:59: warning: format '%0zx' expects type 'size_t', but argument 4 has type 'int'
for (p = buf; p + pattern_len < end; p++) {
if (memcmp(p, pattern, pattern_len))
continue;
- PARA_DEBUG_LOG("found %d byte pattern@%zd\n",
+ PARA_DEBUG_LOG("found %d byte pattern@%d\n",
pattern_len, p - buf);
return p;
}
if (!p)
return -E_WMA_NO_GUID;
- PARA_DEBUG_LOG("found audio stream guid@%0zx\n", p - buf);
+ PARA_DEBUG_LOG("found audio stream guid@%0x\n", p - buf);
return p - buf + 16;
}