diff options
author | Daniel Stenberg <daniel@haxx.se> | 2005-06-22 19:55:09 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2005-06-22 19:55:09 +0000 |
commit | 31efab4909d129d7d340f6b30b1ac42d81f3efca (patch) | |
tree | 21322c228b5c58edcd066ed264177209f576cf89 /apps/codecs/flac.c | |
parent | 1f3d08d600d86937381756b5df1b6ca3fcd9db5e (diff) |
removed the use of the 2nd argument to codec_start() since no codec used
it anymore
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6814 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs/flac.c')
-rw-r--r-- | apps/codecs/flac.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/codecs/flac.c b/apps/codecs/flac.c index 93134bb801..07e5b8f566 100644 --- a/apps/codecs/flac.c +++ b/apps/codecs/flac.c @@ -160,7 +160,7 @@ extern char iramend[]; #endif /* this is the codec entry point */ -enum codec_status codec_start(struct codec_api* api, void* parm) +enum codec_status codec_start(struct codec_api* api) { struct codec_api* ci = api; FLAC__SeekableStreamDecoder* flacDecoder; |