[libcamera-devel,v2,7/8] ipa: Omit extra semicolon
diff mbox series

Message ID 20201020091505.138898-7-hiroh@chromium.org
State Accepted
Commit 766eae45321cecc0ac39dd3219826b111290575b
Headers show
Series
  • [libcamera-devel,v2,1/8] test: Omit extra semicolons
Related show

Commit Message

Hirokazu Honda Oct. 20, 2020, 9:15 a.m. UTC
There is the unnecessary semicolon after ipaCreate() in
raspberrypi.cpp. This removes it.

Signed-off-by: Hirokazu Honda <hiroh@chromium.org>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
---
 src/ipa/raspberrypi/raspberrypi.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Patch
diff mbox series

diff --git a/src/ipa/raspberrypi/raspberrypi.cpp b/src/ipa/raspberrypi/raspberrypi.cpp
index 48a72dd..1c255aa 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<IPARPi>());
 }
 
-}; /* extern "C" */
+} /* extern "C" */
 
 } /* namespace libcamera */