diff options
author | Kieran Bingham <kieran.bingham@ideasonboard.com> | 2017-12-13 23:10:09 +0000 |
---|---|---|
committer | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2017-12-15 15:34:17 +0200 |
commit | 47a81d94a67f3dd4ac75346c2067bfdbb30a2aa5 (patch) | |
tree | 01e79a56484985bb327cfa7321d056661803962a | |
parent | fee73296cae1a4984e18c8d8ee8e50ab217b1e4a (diff) |
videodevice: Fix minor spacing
Provide a space between the return type and the function definition
Signed-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
-rw-r--r-- | kms++util/src/videodevice.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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)); |