diff options
author | Max Kellermann <max@duempel.org> | 2008-08-26 08:27:02 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-08-26 08:27:02 +0200 |
commit | a383f4511734b978020b1f8b4360ef9ad438e929 (patch) | |
tree | 36eed149dc77683414b81e91b463a5a4376d000e /src/inputPlugins/oggvorbis_plugin.c | |
parent | d05c8fd422266f5769ba8bde1ee23a20a73578a7 (diff) | |
download | mpd-a383f4511734b978020b1f8b4360ef9ad438e929.tar.gz mpd-a383f4511734b978020b1f8b4360ef9ad438e929.tar.xz mpd-a383f4511734b978020b1f8b4360ef9ad438e929.zip |
enable -Wpointer-arith, -Wstrict-prototypes
Also enable -Wunused-parameter - this forces us to add the gcc
"unused" attribute to a lot of parameters (mostly library callback
functions), but it's worth it during code refactorizations.
Diffstat (limited to 'src/inputPlugins/oggvorbis_plugin.c')
-rw-r--r-- | src/inputPlugins/oggvorbis_plugin.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/inputPlugins/oggvorbis_plugin.c b/src/inputPlugins/oggvorbis_plugin.c index 16040b388..359198b17 100644 --- a/src/inputPlugins/oggvorbis_plugin.c +++ b/src/inputPlugins/oggvorbis_plugin.c @@ -86,7 +86,7 @@ static int ogg_seek_cb(void *vdata, ogg_int64_t offset, int whence) } /* TODO: check Ogg libraries API and see if we can just not have this func */ -static int ogg_close_cb(void *vdata) +static int ogg_close_cb(mpd_unused void *vdata) { return 0; } |