From 7db2d358ec14c8d7b4110a2267560bb1d15bf004 Mon Sep 17 00:00:00 2001 From: Alexis La Goutte Date: Sat, 10 Aug 2013 21:32:32 +0000 Subject: Fix (-W)header-guard error found by clang 3.4 ./frame_tvbuff.h:25:9: error: '__FRAME_TVBUFF__' is used as a header guard here, followed by #define of a different macro [-Werror,-Wheader-guard] #ifndef __FRAME_TVBUFF__ ^~~~~~~~~~~~~~~~ ./frame_tvbuff.h:26:9: note: '__FRAME_TVBUFF_H__' is defined here; did you mean '__FRAME_TVBUFF__'? #define __FRAME_TVBUFF_H__ ^~~~~~~~~~~~~~~~~~ __FRAME_TVBUFF__ svn path=/trunk/; revision=51286 --- frame_tvbuff.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'frame_tvbuff.h') diff --git a/frame_tvbuff.h b/frame_tvbuff.h index 5d2d98112f..7649dc9503 100644 --- a/frame_tvbuff.h +++ b/frame_tvbuff.h @@ -22,7 +22,7 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ -#ifndef __FRAME_TVBUFF__ +#ifndef __FRAME_TVBUFF_H__ #define __FRAME_TVBUFF_H__ #ifdef __cplusplus -- cgit v1.2.1