Remove leading underscores from specifiers, they are reserved.

Originally committed as revision 9461 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Diego Biurrun
2007-07-02 17:00:04 +00:00
parent 064cd7a897
commit 224906414b
7 changed files with 16 additions and 16 deletions

View File

@@ -23,8 +23,8 @@
* byte swap.
*/
#ifndef __BSWAP_H__
#define __BSWAP_H__
#ifndef BSWAP_H
#define BSWAP_H
#include <stdint.h>
#include "common.h"
@@ -138,4 +138,4 @@ static inline uint64_t bswap_64(uint64_t x)
#define le2me_64(x) (x)
#endif
#endif /* __BSWAP_H__ */
#endif /* BSWAP_H */

View File

@@ -243,7 +243,7 @@ if((y)<(x)){\
#define sprintf sprintf_is_forbidden_due_to_security_issues_use_snprintf
#define strcat strcat_is_forbidden_due_to_security_issues_use_av_strlcat
#define exit exit_is_forbidden
#if !(defined(LIBAVFORMAT_BUILD) || defined(_FRAMEHOOK_H))
#if !(defined(LIBAVFORMAT_BUILD) || defined(FRAMEHOOK_H))
#define printf please_use_av_log
#define fprintf please_use_av_log
#endif