[vlc-commits] packetizer helpers: fixed include-guards
Filip Roséen
git at videolan.org
Mon Feb 22 11:59:33 CET 2016
vlc | branch: master | Filip Roséen <filip at atch.se> | Mon Feb 22 01:12:46 2016 +0100| [be387feb229f0c326798fe92b83c5b1167e5aa36] | committer: Jean-Baptiste Kempf
packetizer helpers: 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=be387feb229f0c326798fe92b83c5b1167e5aa36
---
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>
More information about the vlc-commits
mailing list