registrychunks: Use correct print format specifiers to fix compiler warnings

This commit is contained in:
Sebastian Dröge 2013-03-03 11:28:32 +01:00
parent ac8ccf2c50
commit 3360299ef4

View file

@ -60,7 +60,7 @@ _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 %" G_GSSIZE_FORMAT, \
". Have %d bytes need %" G_GSIZE_FORMAT, \
(int) (endptr - inptr), sizeof(element)); \
goto error_label; \
} \