diff options
author | Daniel Stenberg <daniel@haxx.se> | 2005-05-07 22:29:59 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2005-05-07 22:29:59 +0000 |
commit | d23afcd4f4ad72b1c2c087055a9ba4457f2646cd (patch) | |
tree | 6c8cf8d209343e2b0ff072c7d3bfb1a6d99eea15 /apps | |
parent | c42a1a05bbd623e434d34d72aa320188a723675d (diff) |
fix warnings
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6420 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r-- | apps/codecs/libmusepack/streaminfo.c | 3 | ||||
-rw-r--r-- | apps/codecs/libmusepack/synth_filter.c | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/apps/codecs/libmusepack/streaminfo.c b/apps/codecs/libmusepack/streaminfo.c index ac5a726568..8ec2234b4f 100644 --- a/apps/codecs/libmusepack/streaminfo.c +++ b/apps/codecs/libmusepack/streaminfo.c @@ -35,6 +35,7 @@ /// \file streaminfo.c /// Implementation of streaminfo reading functions. +#include <string.h> #include "musepack.h" #include "internal.h" @@ -63,6 +64,8 @@ mpc_streaminfo_init(mpc_streaminfo * si) static mpc_int32_t streaminfo_read_header_sv8(mpc_streaminfo * si, mpc_reader * fp) { + (void)si; + (void)fp; return 0; } diff --git a/apps/codecs/libmusepack/synth_filter.c b/apps/codecs/libmusepack/synth_filter.c index ca20371b69..f8a2921932 100644 --- a/apps/codecs/libmusepack/synth_filter.c +++ b/apps/codecs/libmusepack/synth_filter.c @@ -36,6 +36,7 @@ /// Synthesis functions. /// \todo document me +#include <string.h> #include "musepack.h" #include "internal.h" |