[vlc-devel] [PATCH 19/27] modules/codec/wmafixed: fixed include-guards

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


  * renamed include-guards to fix issues with reserved identifiers
---
 modules/codec/wmafixed/asf.h    | 4 ++--
 modules/codec/wmafixed/wmadec.h | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/modules/codec/wmafixed/asf.h b/modules/codec/wmafixed/asf.h
index 2a2bfa2..9442ab3 100644
--- a/modules/codec/wmafixed/asf.h
+++ b/modules/codec/wmafixed/asf.h
@@ -20,8 +20,8 @@
  * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  *****************************************************************************/
 
-#ifndef _ASF_H
-#define _ASF_H
+#ifndef VLC_WMAFIXED_ASF_H_
+#define VLC_WMAFIXED_ASF_H_
 
 #include <inttypes.h>
 
diff --git a/modules/codec/wmafixed/wmadec.h b/modules/codec/wmafixed/wmadec.h
index 3e3a320..458c15f 100644
--- a/modules/codec/wmafixed/wmadec.h
+++ b/modules/codec/wmafixed/wmadec.h
@@ -17,8 +17,8 @@
  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  */
 
-#ifndef _WMADEC_H
-#define _WMADEC_H
+#ifndef VLC_WMAFIXED_WMADEC_H_
+#define VLC_WMAFIXED_WMADEC_H_
 
 #include <inttypes.h>
 #include <math.h>
-- 
2.7.1



More information about the vlc-devel mailing list