From 8676dc25f53ec5ae183f514433103b407fdf322b Mon Sep 17 00:00:00 2001 From: Michael Sevakis Date: Sat, 21 Apr 2007 19:07:15 +0000 Subject: Missed a couple. Hopefully fix all warnings. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13234 a1c6a512-1295-4272-9138-f99709370657 --- apps/plugins/alpine_cdc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'apps/plugins/alpine_cdc.c') 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) -- cgit v1.1