diff options
| author | Nils Wallménius <nils@rockbox.org> | 2007-06-13 15:35:07 +0000 |
|---|---|---|
| committer | Nils Wallménius <nils@rockbox.org> | 2007-06-13 15:35:07 +0000 |
| commit | c7f9ca4067f26ba3d0471d50ed3f06b047171b50 (patch) | |
| tree | 9bfaf2d5019c075ad97540a2beed8d68277ca021 /apps/plugins/video.c | |
| parent | f50bd1151a65b1aeefaeab545187fba29881b800 (diff) | |
| download | rockbox-c7f9ca4067f26ba3d0471d50ed3f06b047171b50.zip rockbox-c7f9ca4067f26ba3d0471d50ed3f06b047171b50.tar.gz rockbox-c7f9ca4067f26ba3d0471d50ed3f06b047171b50.tar.bz2 rockbox-c7f9ca4067f26ba3d0471d50ed3f06b047171b50.tar.xz | |
Accept FS#7264 'Build with -Os switch for coldfire targets'.
Introduces MEM_FUNCTION_WRAPPERS(api) macro which adds wrappers
functions to a plugin to make plugins link correctly when gcc
calls mem* functions directly.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13625 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/video.c')
| -rw-r--r-- | apps/plugins/video.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/video.c b/apps/plugins/video.c index f049974..b56a9d0 100644 --- a/apps/plugins/video.c +++ b/apps/plugins/video.c @@ -423,7 +423,7 @@ void timer4_isr(void) /* ISR function to get more mp3 data */ -void GetMoreMp3(unsigned char** start, int* size) +void GetMoreMp3(unsigned char** start, size_t* size) { int available; int advance; |