mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 03:46:11 +00:00
fix compile errors on macosx
with i686-apple-darwin10-gcc-4.2.1: gstv4l2object.c: In function 'gst_v4l2_object_get_nearest_size': gstv4l2object.c:1988: warning: format '%u' expects type 'unsigned int', but argument 12 has type 'gint *' gstv4l2object.c:1988: warning: format '%u' expects type 'unsigned int', but argument 13 has type 'gint *'
This commit is contained in:
parent
4c368242c0
commit
66387181ac
1 changed files with 1 additions and 1 deletions
|
@ -1987,7 +1987,7 @@ gst_v4l2_object_get_nearest_size (GstV4l2Object * v4l2object,
|
||||||
default:
|
default:
|
||||||
GST_WARNING_OBJECT (v4l2object->element,
|
GST_WARNING_OBJECT (v4l2object->element,
|
||||||
"Unsupported field type for %" GST_FOURCC_FORMAT "@%ux%u",
|
"Unsupported field type for %" GST_FOURCC_FORMAT "@%ux%u",
|
||||||
GST_FOURCC_ARGS (pixelformat), width, height);
|
GST_FOURCC_ARGS (pixelformat), *width, *height);
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue