summaryrefslogtreecommitdiff
path: root/apps/plugins/dict.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/dict.c')
-rw-r--r--apps/plugins/dict.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/dict.c b/apps/plugins/dict.c
index 1ec9bce948..4c12fa7506 100644
--- a/apps/plugins/dict.c
+++ b/apps/plugins/dict.c
@@ -62,10 +62,10 @@ void init_screen(void)
62 62
63/* global vars for pl_malloc() */ 63/* global vars for pl_malloc() */
64void *bufptr; 64void *bufptr;
65int bufleft; 65ssize_t bufleft;
66 66
67/* simple function to "allocate" memory in pluginbuffer. */ 67/* simple function to "allocate" memory in pluginbuffer. */
68void *pl_malloc(int size) 68void *pl_malloc(ssize_t size)
69{ 69{
70 void *ptr; 70 void *ptr;
71 ptr = bufptr; 71 ptr = bufptr;