From d312d0ba10f3740d45b50ef8bcfc48e751e694fc Mon Sep 17 00:00:00 2001 From: Laurent Pinchart Date: Mon, 4 Nov 2019 18:50:45 +0200 Subject: libcamera: Remove unneeded semicolons Comply with the coding style by removing lots of unneeded semicolons. Fix a few other coding style violations on the lines touched by those fixes. Signed-off-by: Laurent Pinchart Reviewed-by: Kieran Bingham --- test/v4l2_subdevice/v4l2_subdevice_test.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'test/v4l2_subdevice') diff --git a/test/v4l2_subdevice/v4l2_subdevice_test.h b/test/v4l2_subdevice/v4l2_subdevice_test.h index 96646a15..3bce6691 100644 --- a/test/v4l2_subdevice/v4l2_subdevice_test.h +++ b/test/v4l2_subdevice/v4l2_subdevice_test.h @@ -21,7 +21,9 @@ class V4L2SubdeviceTest : public Test { public: V4L2SubdeviceTest() - : scaler_(nullptr){}; + : scaler_(nullptr) + { + } protected: int init() override; -- cgit v1.2.1