mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 02:31:03 +00:00
fix format string in pngdec
* ext/libpng/gstpngdec.c: Fix size_t vs unsigned int format in error message.
This commit is contained in:
parent
07dcbacd60
commit
034a4a771e
1 changed files with 1 additions and 1 deletions
|
@ -344,7 +344,7 @@ short_buffer:
|
|||
gst_buffer_unref (buffer);
|
||||
GST_ELEMENT_ERROR (pngdec, STREAM, FAILED,
|
||||
(_("Internal data stream error.")),
|
||||
("Read %u, needed %u bytes", size, length));
|
||||
("Read %u, needed %" G_GSIZE_FORMAT "bytes", size, length));
|
||||
ret = GST_FLOW_ERROR;
|
||||
goto pause;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue