From e25b757b7e2d09e1976bae2afeb5eef7bf11e3c8 Mon Sep 17 00:00:00 2001 From: Paul Kocialkowski Date: Mon, 23 Apr 2018 16:39:30 +0200 Subject: [PATCH] Harmonize defines for headers include protections Signed-off-by: Paul Kocialkowski --- src/surface.h | 4 ++-- src/tiled_yuv.h | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/surface.h b/src/surface.h index 7b3efa1..93c3ed0 100644 --- a/src/surface.h +++ b/src/surface.h @@ -23,8 +23,8 @@ * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ -#ifndef _SURFACES_H_ -#define _SURFACES_H_ +#ifndef _SURFACE_H_ +#define _SURFACE_H_ #include diff --git a/src/tiled_yuv.h b/src/tiled_yuv.h index 7a974d2..c1ba1f3 100644 --- a/src/tiled_yuv.h +++ b/src/tiled_yuv.h @@ -17,8 +17,8 @@ * */ -#ifndef __TILED_YUV_H__ -#define __TILED_YUV_H__ +#ifndef _TILED_YUV_H_ +#define _TILED_YUV_H_ void tiled_to_planar(void *src, void *dst, unsigned int dst_pitch, unsigned int width, unsigned int height);