input/wav: Fix incorrect memset() call.

../src/input/wav.c: In function ‘send_chunk’:
  ../src/input/wav.c:200:2: warning: ‘memset’ used with length equal to number of elements without multiplication by element size [-Wmemset-elt-size]
    memset(fdata, 0, CHUNK_SIZE);
    ^~~~~~
This commit is contained in:
Uwe Hermann 2017-06-24 17:26:02 +02:00
parent 41b8fca1a1
commit 1a14a62349
1 changed files with 1 additions and 1 deletions

View File

@ -197,7 +197,7 @@ static void send_chunk(const struct sr_input *in, int offset, int num_samples)
s = in->buf->str + offset;
d = (char *)fdata;
memset(fdata, 0, CHUNK_SIZE);
memset(fdata, 0, CHUNK_SIZE * sizeof(float));
total_samples = num_samples * inc->num_channels;
for (samplenum = 0; samplenum < total_samples; samplenum++) {
if (inc->fmt_code == WAVE_FORMAT_PCM_) {