mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-03-31 13:19:51 +00:00
omxbufferpool: Fix format string compiler warning
This commit is contained in:
parent
326e15ca85
commit
af38fe7dce
1 changed files with 1 additions and 1 deletions
|
@ -148,7 +148,7 @@ gst_omx_memory_allocator_alloc (GstAllocator * allocator, GstMemoryFlags flags,
|
||||||
align -= 1;
|
align -= 1;
|
||||||
if (((align + 1) & align) != 0) {
|
if (((align + 1) & align) != 0) {
|
||||||
GST_WARNING ("Invalid alignment that is not a power of two: %u",
|
GST_WARNING ("Invalid alignment that is not a power of two: %u",
|
||||||
buf->port->port_def.nBufferAlignment);
|
(guint) buf->port->port_def.nBufferAlignment);
|
||||||
align = 0;
|
align = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue