diff options
| author | Jens Arnold <amiconn@rockbox.org> | 2009-01-08 22:37:51 +0000 |
|---|---|---|
| committer | Jens Arnold <amiconn@rockbox.org> | 2009-01-08 22:37:51 +0000 |
| commit | 759bede3bc38946e71090822da67aeb928a2c871 (patch) | |
| tree | 332eeea7528055fde9587c69c3fb9eca43a86f04 /apps/plugins | |
| parent | 19e3b6fb8b51713d8bb95b1f8f7285103c14a826 (diff) | |
| download | rockbox-759bede3bc38946e71090822da67aeb928a2c871.zip rockbox-759bede3bc38946e71090822da67aeb928a2c871.tar.gz rockbox-759bede3bc38946e71090822da67aeb928a2c871.tar.bz2 rockbox-759bede3bc38946e71090822da67aeb928a2c871.tar.xz | |
Fix test_codec for r19704 (prefix removed from plugin API).
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19729 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins')
| -rw-r--r-- | apps/plugins/test_codec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/test_codec.c b/apps/plugins/test_codec.c index 20a1feb..aae2c19 100644 --- a/apps/plugins/test_codec.c +++ b/apps/plugins/test_codec.c @@ -450,7 +450,7 @@ static void init_ci(void) /* --- "Core" functions --- */ /* kernel/ system */ - ci.PREFIX(sleep) = rb->PREFIX(sleep); + ci.sleep = rb->sleep; ci.yield = rb->yield; /* strings and memory */ |