mirror of https://git.ffmpeg.org/ffmpeg.git
Put a space between string literals and macros.
When compiling libavutil/internal.h as C++11, clang warns that a space is required between a string literal and an identifier. Put spaces in concatenations of string literals and EXTERN_PREFIX. Signed-off-by: Chris Watkins <watk@chromium.org> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
09883876ca
commit
55e29ceec8
|
@ -238,8 +238,8 @@ void avpriv_request_sample(void *avc,
|
||||||
#if HAVE_LIBC_MSVCRT
|
#if HAVE_LIBC_MSVCRT
|
||||||
#include <crtversion.h>
|
#include <crtversion.h>
|
||||||
#if defined(_VC_CRT_MAJOR_VERSION) && _VC_CRT_MAJOR_VERSION < 14
|
#if defined(_VC_CRT_MAJOR_VERSION) && _VC_CRT_MAJOR_VERSION < 14
|
||||||
#pragma comment(linker, "/include:"EXTERN_PREFIX"avpriv_strtod")
|
#pragma comment(linker, "/include:" EXTERN_PREFIX "avpriv_strtod")
|
||||||
#pragma comment(linker, "/include:"EXTERN_PREFIX"avpriv_snprintf")
|
#pragma comment(linker, "/include:" EXTERN_PREFIX "avpriv_snprintf")
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define avpriv_open ff_open
|
#define avpriv_open ff_open
|
||||||
|
|
Loading…
Reference in New Issue