diff options
author | Carl Eugen Hoyos <ceffmpeg@gmail.com> | 2020-10-11 19:59:24 +0200 |
---|---|---|
committer | Carl Eugen Hoyos <ceffmpeg@gmail.com> | 2020-10-11 19:59:24 +0200 |
commit | 86f0bba776018cd83642c0195ac3f41f3c87c1d3 (patch) | |
tree | b7295a46cae136a9b83fed3ca714bfbc36ec123a /libavcodec/g2meet.c | |
parent | 9b72cea4463dd2fabcd9ba1454a0855e521d0148 (diff) | |
download | ffmpeg-86f0bba776018cd83642c0195ac3f41f3c87c1d3.tar.gz |
lavc, lavf: Remove newlines from calls to avpriv_request_sample().
Diffstat (limited to 'libavcodec/g2meet.c')
-rw-r--r-- | libavcodec/g2meet.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/g2meet.c b/libavcodec/g2meet.c index 7ef275c9fe..6b870ae3d4 100644 --- a/libavcodec/g2meet.c +++ b/libavcodec/g2meet.c @@ -560,7 +560,7 @@ static uint32_t epic_decode_pixel_pred(ePICContext *dc, int x, int y, } if (R<0 || G<0 || B<0 || R > 255 || G > 255 || B > 255) { - avpriv_request_sample(NULL, "RGB %d %d %d is out of range\n", R, G, B); + avpriv_request_sample(NULL, "RGB %d %d %d (out of range)", R, G, B); return 0; } |