[unit-tests] scan-build: Result of 'malloc' is converted to a pointer of type 'char', which is incompatible with sizeof operand type 'int16_t'
This commit is contained in:
parent
1c4627d35c
commit
93dcd6e77e
|
@ -132,7 +132,7 @@ FST_CORE_BEGIN("./conf")
|
||||||
switch_status_t status = SWITCH_STATUS_FALSE;
|
switch_status_t status = SWITCH_STATUS_FALSE;
|
||||||
switch_file_handle_t fhw = { 0 };
|
switch_file_handle_t fhw = { 0 };
|
||||||
static char filename[] = "/tmp/fs_write_unit_test.wav";
|
static char filename[] = "/tmp/fs_write_unit_test.wav";
|
||||||
char *buf;
|
int16_t *buf;
|
||||||
int nr_frames = 3, i;
|
int nr_frames = 3, i;
|
||||||
switch_size_t len;
|
switch_size_t len;
|
||||||
|
|
||||||
|
@ -159,7 +159,7 @@ FST_CORE_BEGIN("./conf")
|
||||||
switch_status_t status = SWITCH_STATUS_FALSE;
|
switch_status_t status = SWITCH_STATUS_FALSE;
|
||||||
switch_file_handle_t fhw = { 0 };
|
switch_file_handle_t fhw = { 0 };
|
||||||
static char filename[] = "/tmp/fs_write_unit_test.wav";
|
static char filename[] = "/tmp/fs_write_unit_test.wav";
|
||||||
char *buf;
|
int16_t *buf;
|
||||||
int nr_frames = 3, i, want_channels = 2;
|
int nr_frames = 3, i, want_channels = 2;
|
||||||
switch_size_t len;
|
switch_size_t len;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue