From: Kieran Bingham Date: Wed, 13 Dec 2017 23:10:09 +0000 (+0000) Subject: videodevice: Fix minor spacing X-Git-Url: https://git.ti.com/gitweb?p=android%2Fexternal-libkmsxx.git;a=commitdiff_plain;h=47a81d94a67f3dd4ac75346c2067bfdbb30a2aa5 videodevice: Fix minor spacing Provide a space between the return type and the function definition Signed-off-by: Kieran Bingham Signed-off-by: Tomi Valkeinen --- diff --git a/kms++util/src/videodevice.cpp b/kms++util/src/videodevice.cpp index e21916b..efe1678 100644 --- a/kms++util/src/videodevice.cpp +++ b/kms++util/src/videodevice.cpp @@ -436,7 +436,7 @@ void VideoStreamer::queue(DumbFramebuffer* fb) v4l2_queue_dmabuf(m_fd, idx, fb, get_buf_type(m_type)); } -DumbFramebuffer*VideoStreamer::dequeue() +DumbFramebuffer* VideoStreamer::dequeue() { uint32_t idx = v4l2_dequeue(m_fd, get_buf_type(m_type));