[vlc-devel] [PATCH 05/28] modules/packetizer: fixed include-guards
Filip Roséen
filip at atch.se
Sat Feb 20 23:20:10 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..2e3bfc7 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 PACKETIZER__PACKETIZER_HELPER_H_
+#define PACKETIZER__PACKETIZER_HELPER_H_
#include <vlc_block.h>
diff --git a/modules/packetizer/startcode_helper.h b/modules/packetizer/startcode_helper.h
index a126480..222f720 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 PACKETIZER__STARTCODE_HELPER_H_
+#define PACKETIZER__STARTCODE_HELPER_H_
#include <vlc_cpu.h>
--
2.7.1
More information about the vlc-devel
mailing list