registrychunks: Fix format string for debug error message.

This commit is contained in:
Jan Schmidt 2009-10-08 16:05:08 +01:00
parent 63934021ab
commit a58702de89

View file

@ -63,7 +63,8 @@ _strnlen (const gchar * str, gint maxlen)
#define unpack_element(inptr, outptr, element, endptr, error_label) G_STMT_START{ \
if (inptr + sizeof(element) > endptr) { \
GST_ERROR ("Failed reading element " G_STRINGIFY (element) \
". Have %d bytes need %d", endptr - inptr, sizeof(element)); \
". Have %" G_GSSIZE_FORMAT " bytes need %" G_GSSIZE_FORMAT, \
endptr - inptr, sizeof(element)); \
goto error_label; \
} \
outptr = (element *) inptr; \