From e1be96a9ba1389398746fb5018a6cc4d42cb5743 Mon Sep 17 00:00:00 2001 From: Nick Bowler Date: Sun, 6 Jul 2008 18:16:56 -0400 Subject: [PATCH] Don't use reserved identifiers for include guards. --- src/av/audio.h | 4 ++-- src/av/avfile.h | 4 ++-- src/plugin/plugin.h | 4 ++-- src/sys/conf.h | 4 ++-- src/sys/log.h | 4 ++-- src/sys/loop.h | 4 ++-- src/vfs/vfs.h | 4 ++-- 7 files changed, 14 insertions(+), 14 deletions(-) diff --git a/src/av/audio.h b/src/av/audio.h index 8fe3779..ebb7cbf 100644 --- a/src/av/audio.h +++ b/src/av/audio.h @@ -18,8 +18,8 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#ifndef AUDIO_H -#define AUDIO_H +#ifndef AUDIO_H_ +#define AUDIO_H_ /**@defgroup Audio Audio Services * @{ diff --git a/src/av/avfile.h b/src/av/avfile.h index 549733d..3e5776f 100644 --- a/src/av/avfile.h +++ b/src/av/avfile.h @@ -22,8 +22,8 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#ifndef _AVFILE_H -#define _AVFILE_H +#ifndef AVFILE_H_ +#define AVFILE_H_ #include "audio.h" diff --git a/src/plugin/plugin.h b/src/plugin/plugin.h index a723531..7a7d8ff 100644 --- a/src/plugin/plugin.h +++ b/src/plugin/plugin.h @@ -19,8 +19,8 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#ifndef _PLUGIN_H -#define _PLUGIN_H +#ifndef PLUGIN_H_ +#define PLUGIN_H_ /** Module name for logging */ #define PLUGIN_MODULENAME "plugin" diff --git a/src/sys/conf.h b/src/sys/conf.h index d339068..7402dba 100644 --- a/src/sys/conf.h +++ b/src/sys/conf.h @@ -19,8 +19,8 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#ifndef _CONF_H -#define _CONF_H +#ifndef CONF_H_ +#define CONF_H_ #include diff --git a/src/sys/log.h b/src/sys/log.h index 6ee5b7e..18938fe 100644 --- a/src/sys/log.h +++ b/src/sys/log.h @@ -19,8 +19,8 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#ifndef _LOG_H -#define _LOG_H +#ifndef LOG_H_ +#define LOG_H_ /**@defgroup Logger Logging facilities * @{ diff --git a/src/sys/loop.h b/src/sys/loop.h index 26e6b77..fb63769 100644 --- a/src/sys/loop.h +++ b/src/sys/loop.h @@ -19,8 +19,8 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#ifndef _LOOP_H -#define _LOOP_H +#ifndef LOOP_H_ +#define LOOP_H_ /** Adds a procedure to the main loop. * The procedure is added to an internal list and is then called as part of the diff --git a/src/vfs/vfs.h b/src/vfs/vfs.h index 73c75da..126cf4e 100644 --- a/src/vfs/vfs.h +++ b/src/vfs/vfs.h @@ -19,8 +19,8 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#ifndef _VFS_H -#define _VFS_H +#ifndef VFS_H_ +#define VFS_H_ /** Module name for logging */ #define VFS_MODULENAME "VFS" -- 2.11.4.GIT