From 7d7074cef0272cd5155098bfc2bda6849dd89267 Mon Sep 17 00:00:00 2001 From: Nicolas Dufresne Date: Mon, 8 Feb 2016 10:17:49 -0500 Subject: [PATCH] v4l2allocator: Fix spelling of queueing Didn't know which one to choose between queuing and queueing, so I picked the one with the biggest amount of vowels in a row ;-P (both are acceptable apparently) --- sys/v4l2/gstv4l2allocator.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/v4l2/gstv4l2allocator.c b/sys/v4l2/gstv4l2allocator.c index 6dd39bf3c4..7c55eca9a9 100644 --- a/sys/v4l2/gstv4l2allocator.c +++ b/sys/v4l2/gstv4l2allocator.c @@ -1241,7 +1241,7 @@ gst_v4l2_allocator_qbuf (GstV4l2Allocator * allocator, } if (v4l2_ioctl (allocator->video_fd, VIDIOC_QBUF, &group->buffer) < 0) { - GST_ERROR_OBJECT (allocator, "failed queing buffer %i: %s", + GST_ERROR_OBJECT (allocator, "failed queueing buffer %i: %s", group->buffer.index, g_strerror (errno)); ret = FALSE; if (IS_QUEUED (group->buffer)) {