From 766eae45321cecc0ac39dd3219826b111290575b Mon Sep 17 00:00:00 2001 From: Hirokazu Honda Date: Tue, 20 Oct 2020 18:15:04 +0900 Subject: ipa: Omit extra semicolon MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit There is the unnecessary semicolon after ipaCreate() in raspberrypi.cpp. This removes it. Signed-off-by: Hirokazu Honda Reviewed-by: Laurent Pinchart Reviewed-by: Niklas Söderlund Reviewed-by: Kieran Bingham Signed-off-by: Laurent Pinchart --- src/ipa/raspberrypi/raspberrypi.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ipa/raspberrypi/raspberrypi.cpp b/src/ipa/raspberrypi/raspberrypi.cpp index 48a72dd2..1c255aa2 100644 --- a/src/ipa/raspberrypi/raspberrypi.cpp +++ b/src/ipa/raspberrypi/raspberrypi.cpp @@ -1150,6 +1150,6 @@ struct ipa_context *ipaCreate() return new IPAInterfaceWrapper(std::make_unique()); } -}; /* extern "C" */ +} /* extern "C" */ } /* namespace libcamera */ -- cgit v1.2.1