Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/xiph/speex.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorErik de Castro Lopo <erikd@mega-nerd.com>2015-07-20 13:30:14 +0300
committerTristan Matthews <tmatth@videolan.org>2015-07-22 07:53:10 +0300
commitd2495c6f4cf53b0be77ce814e58826a2b27f8a88 (patch)
tree007b5740d83df21525bd5a95df293839c9cd462c /src
parentd9cd05188a20515f02087ef95d7c2a06dc41d4e2 (diff)
Fix compiler warnings from -Wall
Diffstat (limited to 'src')
-rw-r--r--src/wav_io.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/wav_io.c b/src/wav_io.c
index 8544288..c2e2bc8 100644
--- a/src/wav_io.c
+++ b/src/wav_io.c
@@ -188,12 +188,9 @@ int read_wav_header(FILE *file, int *rate, int *channels, int *format, spx_int32
void write_wav_header(FILE *file, int rate, int channels, int format, int size)
{
- char ch[5];
spx_int32_t itmp;
spx_int16_t stmp;
- ch[4]=0;
-
fprintf (file, "RIFF");
itmp = 0x7fffffff;