summaryrefslogtreecommitdiff
path: root/apps/onplay.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/onplay.c')
-rw-r--r--apps/onplay.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/onplay.c b/apps/onplay.c
index 6aaa6e734f..2912fc3fe0 100644
--- a/apps/onplay.c
+++ b/apps/onplay.c
@@ -597,7 +597,8 @@ static bool clipboard_copy(void)
597/* Paste a file to a new directory. Will overwrite always. */ 597/* Paste a file to a new directory. Will overwrite always. */
598static bool clipboard_pastefile(const char *src, const char *target, bool copy) 598static bool clipboard_pastefile(const char *src, const char *target, bool copy)
599{ 599{
600 int src_fd, target_fd, buffersize, size, bytesread, byteswritten; 600 int src_fd, target_fd;
601 ssize_t buffersize, size, bytesread, byteswritten;
601 char *buffer; 602 char *buffer;
602 bool result = false; 603 bool result = false;
603 604