[vlc-devel] [PATCH 18/27] modules/control/dbus: fixed include-guards

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


  * renamed include-guards to fix issues with reserved identifiers
  * replaced comments at `#endif` corresponding to include-guards
---
 modules/control/dbus/dbus_common.h     | 6 +++---
 modules/control/dbus/dbus_introspect.h | 6 +++---
 modules/control/dbus/dbus_player.h     | 6 +++---
 modules/control/dbus/dbus_root.h       | 6 +++---
 modules/control/dbus/dbus_tracklist.h  | 6 +++---
 5 files changed, 15 insertions(+), 15 deletions(-)

diff --git a/modules/control/dbus/dbus_common.h b/modules/control/dbus/dbus_common.h
index 9579c3f..1bdce2e 100644
--- a/modules/control/dbus/dbus_common.h
+++ b/modules/control/dbus/dbus_common.h
@@ -26,8 +26,8 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  *****************************************************************************/
 
-#ifndef _VLC_DBUS_COMMON_H
-#define _VLC_DBUS_COMMON_H
+#ifndef VLC_DBUS_DBUS_COMMON_H_
+#define VLC_DBUS_DBUS_COMMON_H_
 
 #include <vlc_common.h>
 #include <vlc_interface.h>
@@ -146,4 +146,4 @@ int AddProperty ( intf_thread_t *p_intf,
                   const char* psz_signature,
                   int (*pf_marshaller) (intf_thread_t*, DBusMessageIter*) );
 
-#endif //dbus-common.h
+#endif /* include-guard */
diff --git a/modules/control/dbus/dbus_introspect.h b/modules/control/dbus/dbus_introspect.h
index cb570e7..1bc7f5d 100644
--- a/modules/control/dbus/dbus_introspect.h
+++ b/modules/control/dbus/dbus_introspect.h
@@ -26,8 +26,8 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  *****************************************************************************/
 
-#ifndef _VLC_DBUS_INTROSPECT_H
-#define _VLC_DBUS_INTROSPECT_H
+#ifndef VLC_DBUS_DBUS_INTROSPECT_H_
+#define VLC_DBUS_DBUS_INTROSPECT_H_
 
 #include "dbus_common.h"
 
@@ -153,4 +153,4 @@ DBUS_METHOD( handle_introspect )
     REPLY_SEND;
 }
 
-#endif //dbus-introspect.h
+#endif /* include-guard */
diff --git a/modules/control/dbus/dbus_player.h b/modules/control/dbus/dbus_player.h
index 56c0de3..bf5608c 100644
--- a/modules/control/dbus/dbus_player.h
+++ b/modules/control/dbus/dbus_player.h
@@ -24,8 +24,8 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  *****************************************************************************/
 
-#ifndef _VLC_DBUS_PLAYER_H
-#define _VLC_DBUS_PLAYER_H
+#ifndef VLC_DBUS_DBUS_PLAYER_H_
+#define VLC_DBUS_DBUS_PLAYER_H_
 
 #include <vlc_interface.h>
 #include "dbus_common.h"
@@ -73,4 +73,4 @@ int PlayerPropertiesChangedEmit( intf_thread_t *, vlc_dictionary_t * );
 
 void UpdatePlayerCaps( intf_thread_t * );
 
-#endif //dbus_player.h
+#endif /* include-guard */
diff --git a/modules/control/dbus/dbus_root.h b/modules/control/dbus/dbus_root.h
index f95022b..174f84f 100644
--- a/modules/control/dbus/dbus_root.h
+++ b/modules/control/dbus/dbus_root.h
@@ -24,8 +24,8 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  *****************************************************************************/
 
-#ifndef _VLC_DBUS_ROOT_H
-#define _VLC_DBUS_ROOT_H
+#ifndef VLC_DBUS_DBUS_ROOT_H_
+#define VLC_DBUS_DBUS_ROOT_H_
 
 #include "dbus_common.h"
 
@@ -39,4 +39,4 @@ DBusHandlerResult handle_root ( DBusConnection *p_conn,
 int RootPropertiesChangedEmit ( intf_thread_t *,
                                 vlc_dictionary_t * );
 
-#endif //dbus-root.h
+#endif /* include-guard */
diff --git a/modules/control/dbus/dbus_tracklist.h b/modules/control/dbus/dbus_tracklist.h
index 242416d..15abc48 100644
--- a/modules/control/dbus/dbus_tracklist.h
+++ b/modules/control/dbus/dbus_tracklist.h
@@ -24,8 +24,8 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  *****************************************************************************/
 
-#ifndef _VLC_DBUS_TRACKLIST_H
-#define _VLC_DBUS_TRACKLIST_H
+#ifndef VLC_DBUS_DBUS_TRACKLIST_H_
+#define VLC_DBUS_DBUS_TRACKLIST_H_
 
 #include <vlc_common.h>
 #include <vlc_interface.h>
@@ -44,4 +44,4 @@ DBusHandlerResult handle_tracklist ( DBusConnection *p_conn,
 
 int TrackListPropertiesChangedEmit( intf_thread_t *, vlc_dictionary_t * );
 
-#endif //dbus_tracklist.h
+#endif /* include-guard */
-- 
2.7.1



More information about the vlc-devel mailing list