From a237dbeb7e2238beea7222bafe75f8a0d912c4af Mon Sep 17 00:00:00 2001 From: Laurent Pinchart Date: Sun, 17 May 2020 23:32:46 +0300 Subject: (q)cam: Fix header guards Several headers belonging to cam and qcam use __LIBCAMERA_*_H__ as a header guard. They're not part of the libcamera core, use __CAM_*_H__ and __QCAM_*_H__ instead, similarly to all other headers of cam and qcam. Signed-off-by: Laurent Pinchart Reviewed-by: Kieran Bingham --- src/qcam/dng_writer.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/qcam') diff --git a/src/qcam/dng_writer.h b/src/qcam/dng_writer.h index d74d73d0..bf44c879 100644 --- a/src/qcam/dng_writer.h +++ b/src/qcam/dng_writer.h @@ -4,8 +4,8 @@ * * dng_writer.h - DNG writer */ -#ifndef __LIBCAMERA_DNG_WRITER_H__ -#define __LIBCAMERA_DNG_WRITER_H__ +#ifndef __QCAM_DNG_WRITER_H__ +#define __QCAM_DNG_WRITER_H__ #ifdef HAVE_TIFF #define HAVE_DNG @@ -28,4 +28,4 @@ public: #endif /* HAVE_TIFF */ -#endif /* __LIBCAMERA_DNG_WRITER_H__ */ +#endif /* __QCAM_DNG_WRITER_H__ */ -- cgit v1.2.1