[vlc-commits] image: the lostcount is an unsigned
Steve Lhomme
git at videolan.org
Wed Jul 11 15:35:30 CEST 2018
vlc | branch: master | Steve Lhomme <robux4 at ycbcr.xyz> | Wed Jul 11 15:30:11 2018 +0200| [2158efcff842d6d9b10104f1209760fc6b4373f8] | committer: Steve Lhomme
image: the lostcount is an unsigned
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=2158efcff842d6d9b10104f1209760fc6b4373f8
---
src/misc/image.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/misc/image.c b/src/misc/image.c
index ca89dcf761..a1c5b1c346 100644
--- a/src/misc/image.c
+++ b/src/misc/image.c
@@ -188,7 +188,7 @@ static picture_t *ImageRead( image_handler_t *p_image, block_t *p_block,
}
if( lostcount > 0 )
msg_Warn( p_image->p_parent, "Image decoder output more than one "
- "picture (%d)", lostcount );
+ "picture (%u)", lostcount );
}
if( p_pic == NULL )
More information about the vlc-commits
mailing list