[vlc-devel] [PATCH 05/27] modules/packetizer: fixed include-guards
Filip Roséen
filip at atch.se
Mon Feb 22 01:12:46 CET 2016
* renamed include-guards to fix issues with reserved identifiers
---
modules/packetizer/packetizer_helper.h | 4 ++--
modules/packetizer/startcode_helper.h | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/modules/packetizer/packetizer_helper.h b/modules/packetizer/packetizer_helper.h
index 9e6841c..74ded19 100644
--- a/modules/packetizer/packetizer_helper.h
+++ b/modules/packetizer/packetizer_helper.h
@@ -21,8 +21,8 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
-#ifndef _PACKETIZER_H
-#define _PACKETIZER_H 1
+#ifndef VLC_PACKETIZER_HELPER_H_
+#define VLC_PACKETIZER_HELPER_H_
#include <vlc_block.h>
diff --git a/modules/packetizer/startcode_helper.h b/modules/packetizer/startcode_helper.h
index a126480..94696a7 100644
--- a/modules/packetizer/startcode_helper.h
+++ b/modules/packetizer/startcode_helper.h
@@ -17,8 +17,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 _STARTCODE_HELPER_H
-#define _STARTCODE_HELPER_H 1
+#ifndef VLC_STARTCODE_HELPER_H_
+#define VLC_STARTCODE_HELPER_H_
#include <vlc_cpu.h>
--
2.7.1
More information about the vlc-devel
mailing list