From 93dcd6e77eeeb33f6854571360bee498e7cac56f Mon Sep 17 00:00:00 2001 From: Dragos Oancea Date: Fri, 21 Feb 2020 20:28:41 +0000 Subject: [PATCH] [unit-tests] scan-build: Result of 'malloc' is converted to a pointer of type 'char', which is incompatible with sizeof operand type 'int16_t' --- tests/unit/switch_core_file.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/unit/switch_core_file.c b/tests/unit/switch_core_file.c index c6aa74a24e..54da0f4a1a 100644 --- a/tests/unit/switch_core_file.c +++ b/tests/unit/switch_core_file.c @@ -132,7 +132,7 @@ FST_CORE_BEGIN("./conf") switch_status_t status = SWITCH_STATUS_FALSE; switch_file_handle_t fhw = { 0 }; static char filename[] = "/tmp/fs_write_unit_test.wav"; - char *buf; + int16_t *buf; int nr_frames = 3, i; switch_size_t len; @@ -159,7 +159,7 @@ FST_CORE_BEGIN("./conf") switch_status_t status = SWITCH_STATUS_FALSE; switch_file_handle_t fhw = { 0 }; static char filename[] = "/tmp/fs_write_unit_test.wav"; - char *buf; + int16_t *buf; int nr_frames = 3, i, want_channels = 2; switch_size_t len;