From bfae30d814d75b1ca0c75e325977a3d55b62266b Mon Sep 17 00:00:00 2001 From: Lucas Tanure Date: Sun, 20 Sep 2015 11:12:50 -0300 Subject: [PATCH] vaapi-recorder: Fix allocator sizeof operand mismatch Result of 'calloc' is converted to a pointer of type 'unsigned int', which is incompatible with sizeof operand type 'int' Signed-off-by: Lucas Tanure Reviewed-by: Bryce Harrington --- src/vaapi-recorder.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vaapi-recorder.c b/src/vaapi-recorder.c index c93f7b94..1fd7ebe6 100644 --- a/src/vaapi-recorder.c +++ b/src/vaapi-recorder.c @@ -141,7 +141,7 @@ static void bitstream_start(struct bitstream *bs) { bs->max_size_in_dword = BITSTREAM_ALLOCATE_STEPPING; - bs->buffer = calloc(bs->max_size_in_dword * sizeof(int), 1); + bs->buffer = calloc(bs->max_size_in_dword * sizeof(unsigned int), 1); bs->bit_offset = 0; }