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.h | |
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.h')
-rw-r--r-- | apps/codecs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/codecs.h b/apps/codecs.h index 2c2a4cfe43..ac5265c57c 100644 --- a/apps/codecs.h +++ b/apps/codecs.h @@ -397,7 +397,7 @@ int codec_load_file(const char* codec); #endif /* defined by the codec */ -enum codec_status codec_start(struct codec_api* rockbox, void* parameter) +enum codec_status codec_start(struct codec_api* rockbox) __attribute__ ((section (".entry"))); #endif |