From ea515494cb23160c2eb05835411b8927a025026f Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Fri, 31 Oct 2008 09:19:53 +0100 Subject: added prefix to header macros "LOG_H" is a macro which is also used by ffmpeg/log.h. This is ffmpeg's fault, because short macros should be reserved for applications, but since it's always a good idea to choose prefixed macro names, even for applications, we are going to do that in MPD. --- src/decoder/_flac_common.h | 4 ++-- src/decoder/_ogg_common.h | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'src/decoder') diff --git a/src/decoder/_flac_common.h b/src/decoder/_flac_common.h index 052074980..c1c648a62 100644 --- a/src/decoder/_flac_common.h +++ b/src/decoder/_flac_common.h @@ -19,8 +19,8 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#ifndef _FLAC_COMMON_H -#define _FLAC_COMMON_H +#ifndef MPD_FLAC_COMMON_H +#define MPD_FLAC_COMMON_H #include "../decoder_api.h" diff --git a/src/decoder/_ogg_common.h b/src/decoder/_ogg_common.h index d03bae301..efc71c56e 100644 --- a/src/decoder/_ogg_common.h +++ b/src/decoder/_ogg_common.h @@ -19,8 +19,8 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#ifndef _OGG_COMMON_H -#define _OGG_COMMON_H +#ifndef MPD_OGG_COMMON_H +#define MPD_OGG_COMMON_H #include "../decoder_api.h" -- cgit v1.2.3