summaryrefslogtreecommitdiff
path: root/apps/plugins/shortcuts
diff options
context:
space:
mode:
authorFrank Gevaerts <frank@gevaerts.be>2010-07-18 12:42:47 +0000
committerFrank Gevaerts <frank@gevaerts.be>2010-07-18 12:42:47 +0000
commit63011c67438204ccdb29322b6f324c17e20fc0e1 (patch)
tree21b39ce39e22ba0cc666c80d48294b3e85f4f56e /apps/plugins/shortcuts
parent3cd1968cbc30d32b6d883792c841c897c872860a (diff)
downloadrockbox-63011c67438204ccdb29322b6f324c17e20fc0e1.tar.gz
rockbox-63011c67438204ccdb29322b6f324c17e20fc0e1.zip
Revert accidental commit of "%z" support in r26071 (the implementation assumed size_t==long, which is not always the case in hosted environments)
Remove four remaining uses of %z, three of which were in DEBUGF git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27479 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/shortcuts')
-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