diff options
author | Josep Torra <n770galaxy@gmail.com> | 2013-04-08 16:52:19 +0200 |
---|---|---|
committer | Josep Torra <n770galaxy@gmail.com> | 2013-04-08 16:52:19 +0200 |
commit | 16cf5d77dbbe46a8cea7770784d484e604eb4bb2 (patch) | |
tree | 4c5c354a00561a6dde8d8589d334df227b37d5a4 | |
parent | c46a6a757e85b53463902887aec1535c63f1dafb (diff) |
omxvideodec: use the correct printf format in a debug message
-rw-r--r-- | omx/gstomxvideodec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/omx/gstomxvideodec.c b/omx/gstomxvideodec.c index 23da5db..b1ac3f2 100644 --- a/omx/gstomxvideodec.c +++ b/omx/gstomxvideodec.c @@ -1378,7 +1378,7 @@ gst_omx_video_dec_allocate_output_buffers (GstOMXVideoDec * self) if (err != OMX_ErrorNone) { GST_INFO_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); g_list_free_full (buffers, (GDestroyNotify) gst_buffer_unref); g_list_free (images); |