diff options
author | Carl Eugen Hoyos <ceffmpeg@gmail.com> | 2020-01-06 16:16:18 +0100 |
---|---|---|
committer | Carl Eugen Hoyos <ceffmpeg@gmail.com> | 2020-01-06 22:38:56 +0100 |
commit | 96fab29e9659c9492783f6369c5e14c0316bb94b (patch) | |
tree | 41117f1686fb73ad94c2422fd7f0d1246bc94e25 /libswscale/utils.c | |
parent | e21ba176c92b61977330b9aa8d9c49e4fe5a3c23 (diff) | |
download | ffmpeg-96fab29e9659c9492783f6369c5e14c0316bb94b.tar.gz |
Silence "string-plus-int" warning shown by clang.
libswscale/utils.c:89:42: warning: adding 'unsigned long' to a string does not append to the string [-Wstring-plus-int]
Diffstat (limited to 'libswscale/utils.c')
-rw-r--r-- | libswscale/utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libswscale/utils.c b/libswscale/utils.c index c915cf0fca..b2c08a5983 100644 --- a/libswscale/utils.c +++ b/libswscale/utils.c @@ -86,7 +86,7 @@ const char *swscale_configuration(void) const char *swscale_license(void) { #define LICENSE_PREFIX "libswscale license: " - return LICENSE_PREFIX FFMPEG_LICENSE + sizeof(LICENSE_PREFIX) - 1; + return &LICENSE_PREFIX FFMPEG_LICENSE[sizeof(LICENSE_PREFIX) - 1]; } typedef struct FormatEntry { |