[vlc-commits] ASF demux: fixed include-guards

Filip Roséen git at videolan.org
Mon Feb 22 11:59:35 CET 2016


vlc | branch: master | Filip Roséen <filip at atch.se> | Mon Feb 22 01:12:58 2016 +0100| [ffa4c9c35c4aa5cfece8be05cef275c0e32126da] | committer: Jean-Baptiste Kempf

ASF demux: fixed include-guards

  * 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=ffa4c9c35c4aa5cfece8be05cef275c0e32126da
---

 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
 



More information about the vlc-commits mailing list