# HG changeset patch # User stefano # Date 1263669269 0 # Node ID 4ee0cedb32f297c11a2a8779bcd8dac3be54690f # Parent 67cace3e3df762599401da47591c03fb8a63f963 Prefer "to %s%s" over "to%s %s", slightly more readable. diff -r 67cace3e3df7 -r 4ee0cedb32f2 libswscale/swscale.c --- a/libswscale/swscale.c Sat Jan 16 19:11:03 2010 +0000 +++ b/libswscale/swscale.c Sat Jan 16 19:14:29 2010 +0000 @@ -2834,10 +2834,10 @@ else av_log(c, AV_LOG_INFO, "ehh flags invalid?! "); - av_log(c, AV_LOG_INFO, "from %s to%s %s ", + av_log(c, AV_LOG_INFO, "from %s to %s%s ", sws_format_name(srcFormat), #ifdef DITHER1XBPP - dstFormat == PIX_FMT_BGR555 || dstFormat == PIX_FMT_BGR565 ? " dithered" : "", + dstFormat == PIX_FMT_BGR555 || dstFormat == PIX_FMT_BGR565 ? "dithered " : "", #else "", #endif