Mercurial > mplayer.hg
changeset 25170:b0e5772d519e
Fix multiple inclusion guards, identifiers starting with __ are reserved
for the system.
author | diego |
---|---|
date | Thu, 29 Nov 2007 14:23:24 +0000 |
parents | db94ecd7e7f1 |
children | d6ba514769b9 |
files | libaf/af_format_alaw.c libaf/af_format_ulaw.c |
diffstat | 2 files changed, 6 insertions(+), 6 deletions(-) [+] |
line wrap: on
line diff
--- a/libaf/af_format_alaw.c Thu Nov 29 03:35:50 2007 +0000 +++ b/libaf/af_format_alaw.c Thu Nov 29 14:23:24 2007 +0000 @@ -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 <inttypes.h> @@ -311,4 +311,4 @@ } return AF_OK; } -#endif /* __af_format_alaw_c */ +#endif /* AF_FORMAT_ALAW_C */
--- a/libaf/af_format_ulaw.c Thu Nov 29 03:35:50 2007 +0000 +++ b/libaf/af_format_ulaw.c Thu Nov 29 14:23:24 2007 +0000 @@ -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 <inttypes.h> @@ -824,4 +824,4 @@ return AF_OK; } -#endif /* __af_format_ulaw_c */ +#endif /* AF_FORMAT_ULAW_C */