summaryrefslogtreecommitdiff
path: root/apps/plugins/shortcuts/shortcuts_common.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/shortcuts/shortcuts_common.c')
-rw-r--r--apps/plugins/shortcuts/shortcuts_common.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/shortcuts/shortcuts_common.c b/apps/plugins/shortcuts/shortcuts_common.c
index 0eb8c47e7d..fe4f07798b 100644
--- a/apps/plugins/shortcuts/shortcuts_common.c
+++ b/apps/plugins/shortcuts/shortcuts_common.c
@@ -54,7 +54,7 @@ void write_int_instruction_to_file(int fd, char *instr, int value);
54void allocate_memory(void **buf, size_t *bufsize) 54void allocate_memory(void **buf, size_t *bufsize)
55{ 55{
56 *buf = rb->plugin_get_buffer(bufsize); 56 *buf = rb->plugin_get_buffer(bufsize);
57 DEBUGF("Got %zud bytes of memory\n", *bufsize); 57 DEBUGF("Got %lu bytes of memory\n", (unsigned long)*bufsize);
58} 58}
59 59
60 60