From df58d5f00d3fa7ed3aad26c3e76a79b3790ba186 Mon Sep 17 00:00:00 2001 From: diego Date: Thu, 29 Nov 2007 14:23:24 +0000 Subject: [PATCH] Fix multiple inclusion guards, identifiers starting with __ are reserved for the system. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25198 b3059339-0415-0410-9bf9-f77b7e298cf2 --- libaf/af_format_alaw.c | 6 +++--- libaf/af_format_ulaw.c | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/libaf/af_format_alaw.c b/libaf/af_format_alaw.c index 150d294163..2283a3f14b 100644 --- a/libaf/af_format_alaw.c +++ b/libaf/af_format_alaw.c @@ -11,8 +11,8 @@ //============================================================================= */ -#ifndef __af_format_alaw_c -#define __af_format_alaw_c +#ifndef AF_FORMAT_ALAW_C +#define AF_FORMAT_ALAW_C #include @@ -311,4 +311,4 @@ static int to_alaw(void* in, void* out, int len, int bps, int format) } return AF_OK; } -#endif /* __af_format_alaw_c */ +#endif /* AF_FORMAT_ALAW_C */ diff --git a/libaf/af_format_ulaw.c b/libaf/af_format_ulaw.c index 20e090097b..e6e62f1f55 100644 --- a/libaf/af_format_ulaw.c +++ b/libaf/af_format_ulaw.c @@ -11,8 +11,8 @@ //============================================================================= */ -#ifndef __af_format_ulaw_c -#define __af_format_ulaw_c +#ifndef AF_FORMAT_ULAW_C +#define AF_FORMAT_ULAW_C #include @@ -824,4 +824,4 @@ static int to_ulaw(void* in, void* out, int len, int bps, int format) return AF_OK; } -#endif /* __af_format_ulaw_c */ +#endif /* AF_FORMAT_ULAW_C */