[vlc-devel] [PATCH 17/27] modules/demux/asf: fixed include-guards
Filip Roséen
filip at atch.se
Mon Feb 22 01:12:58 CET 2016
* renamed include-guards to fix issues with reserved identifiers
---
modules/demux/asf/asfpacket.h | 4 ++--
modules/demux/asf/libasf.h | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/modules/demux/asf/asfpacket.h b/modules/demux/asf/asfpacket.h
index 29c475f..768ca22 100644
--- a/modules/demux/asf/asfpacket.h
+++ b/modules/demux/asf/asfpacket.h
@@ -19,8 +19,8 @@
* along with this program; if not, write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
-#ifndef _VLC_ASFPACKET_H
-#define _VLC_ASFPACKET_H
+#ifndef VLC_ASF_ASFPACKET_H_
+#define VLC_ASF_ASFPACKET_H_
#include <vlc_demux.h>
#include <vlc_es.h>
diff --git a/modules/demux/asf/libasf.h b/modules/demux/asf/libasf.h
index 7e3ecb4..3e11e45 100644
--- a/modules/demux/asf/libasf.h
+++ b/modules/demux/asf/libasf.h
@@ -19,8 +19,8 @@
* along with this program; if not, write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
-#ifndef _VLC_LIBASF_H
-#define _VLC_LIBASF_H
+#ifndef VLC_ASF_LIBASF_H_
+#define VLC_ASF_LIBASF_H_
#define ASF_MAX_STREAMNUMBER 127
--
2.7.1
More information about the vlc-devel
mailing list