1
0
Fork 0
forked from len0rd/rockbox

No more type punning where it's not funny.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13235 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Michael Sevakis 2007-04-21 19:20:20 +00:00
parent 8676dc25f5
commit eb85f14f95
2 changed files with 5 additions and 4 deletions

View file

@ -598,13 +598,14 @@ static bool clipboard_copy(void)
static bool clipboard_pastefile(const char *src, const char *target, bool copy)
{
int src_fd, target_fd;
ssize_t buffersize, size, bytesread, byteswritten;
size_t buffersize;
ssize_t size, bytesread, byteswritten;
char *buffer;
bool result = false;
if (copy) {
/* See if we can get the plugin buffer for the file copy buffer */
buffer = (char *) plugin_get_buffer((size_t *)&buffersize);
buffer = (char *) plugin_get_buffer(&buffersize);
if (buffer == NULL || buffersize < 512) {
/* Not large enough, try for a disk sector worth of stack instead */
buffersize = 512;

View file

@ -276,14 +276,14 @@ static bool playlist_viewer_init(struct playlist_viewer * viewer,
char* filename, bool reload)
{
char* buffer;
ssize_t buffer_size;
size_t buffer_size;
bool is_playing = audio_status() & AUDIO_STATUS_PLAY;
if (!filename && !is_playing)
/* Nothing is playing, exit */
return false;
buffer = plugin_get_buffer((size_t *)&buffer_size);
buffer = plugin_get_buffer(&buffer_size);
if (!buffer)
return false;