From: Dragos Oancea Date: Fri, 21 Feb 2020 20:28:41 +0000 (+0000) Subject: [unit-tests] scan-build: Result of 'malloc' is converted to a pointer of type 'char... X-Git-Tag: v1.10.3^2~131^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=93dcd6e77eeeb33f6854571360bee498e7cac56f;p=thirdparty%2Ffreeswitch.git [unit-tests] scan-build: Result of 'malloc' is converted to a pointer of type 'char', which is incompatible with sizeof operand type 'int16_t' --- 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;