[vlc-commits] codecs: fixed include-guards for a52 and cc
Filip Roséen
git at videolan.org
Mon Feb 22 11:59:36 CET 2016
vlc | branch: master | Filip Roséen <filip at atch.se> | Mon Feb 22 01:13:02 2016 +0100| [31ac29376c14b5eb02b5856db2924dc68d26915f] | committer: Jean-Baptiste Kempf
codecs: fixed include-guards for a52 and cc
* renamed include-guards to fix issues with reserved identifiers
Signed-off-by: Jean-Baptiste Kempf <jb at videolan.org>
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=31ac29376c14b5eb02b5856db2924dc68d26915f
---
modules/codec/a52.h | 4 ++--
modules/codec/cc.h | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/modules/codec/a52.h b/modules/codec/a52.h
index 00078d3..3b7315c 100644
--- a/modules/codec/a52.h
+++ b/modules/codec/a52.h
@@ -24,8 +24,8 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
-#ifndef _VLC_A52_H
-#define _VLC_A52_H 1
+#ifndef VLC_A52_H_
+#define VLC_A52_H_
#include <vlc_bits.h>
diff --git a/modules/codec/cc.h b/modules/codec/cc.h
index d92602b..6c495c4 100644
--- a/modules/codec/cc.h
+++ b/modules/codec/cc.h
@@ -21,8 +21,8 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
-#ifndef _CC_H
-#define _CC_H 1
+#ifndef VLC_CC_H_
+#define VLC_CC_H_
#include <vlc_bits.h>
More information about the vlc-commits
mailing list