diff options
| author | Michael Sevakis <jethead71@rockbox.org> | 2007-04-21 19:07:15 +0000 |
|---|---|---|
| committer | Michael Sevakis <jethead71@rockbox.org> | 2007-04-21 19:07:15 +0000 |
| commit | 8676dc25f53ec5ae183f514433103b407fdf322b (patch) | |
| tree | 208a7628b30c2970ecdca2b14fe6bf3da6489aae /apps/plugins/alpine_cdc.c | |
| parent | 26d242ae654cc1e69c55ecd49fc3a5c13dfb8052 (diff) | |
| download | rockbox-8676dc25f53ec5ae183f514433103b407fdf322b.zip rockbox-8676dc25f53ec5ae183f514433103b407fdf322b.tar.gz rockbox-8676dc25f53ec5ae183f514433103b407fdf322b.tar.bz2 rockbox-8676dc25f53ec5ae183f514433103b407fdf322b.tar.xz | |
Missed a couple. Hopefully fix all warnings.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13234 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/alpine_cdc.c')
| -rw-r--r-- | apps/plugins/alpine_cdc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/alpine_cdc.c b/apps/plugins/alpine_cdc.c index 08689d6..8b285d4 100644 --- a/apps/plugins/alpine_cdc.c +++ b/apps/plugins/alpine_cdc.c @@ -1157,7 +1157,7 @@ int main(void* parameter) #endif /* init the worker thread */ - stack = rb->plugin_get_buffer(&stacksize); /* use the rest as stack */ + stack = rb->plugin_get_buffer((size_t *)&stacksize); /* use the rest as stack */ stack = (void*)(((unsigned int)stack + 100) & ~3); /* a bit away, 32 bit align */ stacksize = (stacksize - 100) & ~3; if (stacksize < DEFAULT_STACK_SIZE) |