[vlc-devel] [PATCH 27/27] modules/access/dcp: fixed include-guards

Filip Roséen filip at atch.se
Mon Feb 22 01:13:08 CET 2016


  * renamed include-guards to fix issues with reserved identifiers
  * replaced comment at `#endif` corresponding to include-guard
---
 modules/access/dcp/dcpparser.h | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/modules/access/dcp/dcpparser.h b/modules/access/dcp/dcpparser.h
index 8f95e03..c3b1db0 100644
--- a/modules/access/dcp/dcpparser.h
+++ b/modules/access/dcp/dcpparser.h
@@ -31,8 +31,8 @@
  */
 
 
-#ifndef _DCPPARSER_H
-#define _DCPPARSER_H
+#ifndef VLC_DCP_DCPPARSER_H_
+#define VLC_DCP_DCPPARSER_H_
 
 #ifdef HAVE_CONFIG_H
 #include "config.h"
@@ -395,4 +395,4 @@ private:
     string s_path;
 };
 
-#endif /* _DCPPARSER_H */
+#endif /* include-guard */
-- 
2.7.1



More information about the vlc-devel mailing list