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/rockbox_flash.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/rockbox_flash.c')
| -rw-r--r-- | apps/plugins/rockbox_flash.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/rockbox_flash.c b/apps/plugins/rockbox_flash.c index 86e62eb..575fb89 100644 --- a/apps/plugins/rockbox_flash.c +++ b/apps/plugins/rockbox_flash.c @@ -664,7 +664,7 @@ void DoUserDialog(char* filename) } /* "allocate" memory */ - sector = rb->plugin_get_buffer(&memleft); + sector = rb->plugin_get_buffer((size_t *)&memleft); if (memleft < SECTORSIZE) /* need buffer for a flash sector */ { rb->splash(HZ*3, "Out of memory"); @@ -867,7 +867,7 @@ void DoUserDialog(char* filename) } /* "allocate" memory */ - sector = rb->plugin_get_buffer(&memleft); + sector = rb->plugin_get_buffer((size_t *)&memleft); if (memleft < SECTORSIZE) /* need buffer for a flash sector */ { rb->splash(HZ*3, "Out of memory"); |