diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2005-06-22 21:16:28 +0000 |
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2005-06-22 21:16:28 +0000 |
| commit | 54c1c667de852636c0a9bcb3550949ac9e2ba5e9 (patch) | |
| tree | 69158d2c70a5cdecef712f6eb6c58b5968624e1b | |
| parent | 091001179ac79d57b2a5a6f20afe16fb2d5a63b0 (diff) | |
| download | rockbox-54c1c667de852636c0a9bcb3550949ac9e2ba5e9.zip rockbox-54c1c667de852636c0a9bcb3550949ac9e2ba5e9.tar.gz rockbox-54c1c667de852636c0a9bcb3550949ac9e2ba5e9.tar.bz2 rockbox-54c1c667de852636c0a9bcb3550949ac9e2ba5e9.tar.xz | |
this is not const
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6824 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | apps/codecs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/codecs.c b/apps/codecs.c index e0d785b..053a622 100644 --- a/apps/codecs.c +++ b/apps/codecs.c @@ -65,7 +65,7 @@ extern void* plugin_get_audio_buffer(int *buffer_size); static int codec_test(int api_version, int model, int memsize); -const struct codec_api ci = { +struct codec_api ci = { CODEC_API_VERSION, codec_test, |