[vlc-commits] video_output: print the dimensions as the unsigned integers that they are
Steve Lhomme
git at videolan.org
Wed Jul 11 15:35:29 CEST 2018
vlc | branch: master | Steve Lhomme <robux4 at ycbcr.xyz> | Wed Jul 11 15:32:51 2018 +0200| [7fb50ccf27798fe0f2731793f70943fe2cff62b7] | committer: Steve Lhomme
video_output: print the dimensions as the unsigned integers that they are
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=7fb50ccf27798fe0f2731793f70943fe2cff62b7
---
src/video_output/video_output.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/video_output/video_output.c b/src/video_output/video_output.c
index e6c0677ed4..5db7acf509 100644
--- a/src/video_output/video_output.c
+++ b/src/video_output/video_output.c
@@ -1444,7 +1444,7 @@ static void ThreadExecuteCropBorder(vout_thread_t *vout,
unsigned left, unsigned top,
unsigned right, unsigned bottom)
{
- msg_Dbg(vout, "ThreadExecuteCropBorder %d.%d %dx%d", left, top, right, bottom);
+ msg_Dbg(vout, "ThreadExecuteCropBorder %u.%u %ux%u", left, top, right, bottom);
vout_SetDisplayCrop(vout->p->display.vd, 0, 0,
left, top, -(int)right, -(int)bottom);
}
More information about the vlc-commits
mailing list