mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-11 01:45:33 +00:00
omxvideodec: fix printf format identifier
This commit is contained in:
parent
cde5df17fa
commit
7423e3e023
1 changed files with 2 additions and 2 deletions
|
@ -1218,7 +1218,7 @@ gst_omx_video_dec_allocate_output_buffers (GstOMXVideoDec * self)
|
|||
|
||||
if (err != OMX_ErrorNone) {
|
||||
GST_ERROR_OBJECT (self,
|
||||
"Failed to configure %n output buffers: %s (0x%08x)", min,
|
||||
"Failed to configure %u output buffers: %s (0x%08x)", min,
|
||||
gst_omx_error_to_string (err), err);
|
||||
goto done;
|
||||
}
|
||||
|
@ -1254,7 +1254,7 @@ gst_omx_video_dec_allocate_output_buffers (GstOMXVideoDec * self)
|
|||
|
||||
if (err != OMX_ErrorNone) {
|
||||
GST_ERROR_OBJECT (self,
|
||||
"Failed to configure %n output buffers: %s (0x%08x)", min,
|
||||
"Failed to configure %u output buffers: %s (0x%08x)", min,
|
||||
gst_omx_error_to_string (err), err);
|
||||
goto done;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue