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
diff options
context:
space:
mode:
authorTristan Matthews <tmatth@videolan.org>2014-12-05 00:45:07 +0300
committerTristan Matthews <tmatth@videolan.org>2014-12-05 00:45:07 +0300
commit05bafb86f2402ec41d84c5b9ded42f1fb123b4d1 (patch)
tree6331eaf6bee7973a91319f3359d072aac25a8709
parent99446819ea60d39dcabac70cb22fac6ba23fdbbe (diff)
speex_header: silence printf warning
-rw-r--r--libspeex/speex_header.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libspeex/speex_header.c b/libspeex/speex_header.c
index e56f87e..a495456 100644
--- a/libspeex/speex_header.c
+++ b/libspeex/speex_header.c
@@ -159,7 +159,7 @@ EXPORT SpeexHeader *speex_packet_to_header(char *packet, int size)
for (i=0;i<8;i++)
if (packet[i]!=h[i])
{
- speex_notify("This doesn't look like a Speex file");
+ /* This doesn't look like a Speex file */
return NULL;
}