[vlc-commits] vout_wrapper: the amount of pictures is unsigned
Steve Lhomme
git at videolan.org
Wed Jul 11 15:35:25 CEST 2018
vlc | branch: master | Steve Lhomme <robux4 at ycbcr.xyz> | Wed Jul 11 15:25:23 2018 +0200| [8f10abecde1c528ae1ef96e412685cb6eba22139] | committer: Steve Lhomme
vout_wrapper: the amount of pictures is unsigned
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=8f10abecde1c528ae1ef96e412685cb6eba22139
---
src/video_output/vout_wrapper.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/video_output/vout_wrapper.c b/src/video_output/vout_wrapper.c
index 6d13f92d59..5f7fab68ed 100644
--- a/src/video_output/vout_wrapper.c
+++ b/src/video_output/vout_wrapper.c
@@ -129,7 +129,7 @@ int vout_InitWrapper(vout_thread_t *vout)
#ifndef NDEBUG
if ( picture_pool_GetSize(display_pool) < display_pool_size )
- msg_Warn(vout, "Not enough display buffers in the pool, requested %d got %d",
+ msg_Warn(vout, "Not enough display buffers in the pool, requested %u got %u",
display_pool_size, picture_pool_GetSize(display_pool));
#endif
More information about the vlc-commits
mailing list