diff options
| author | Thomas Martitz <kugel@rockbox.org> | 2010-05-06 21:17:14 +0000 |
|---|---|---|
| committer | Thomas Martitz <kugel@rockbox.org> | 2010-05-06 21:17:14 +0000 |
| commit | 54548df56e36f870f0870a87dc6b9350836859bf (patch) | |
| tree | 8cce8300347a2d0989dcf04a0d780972ad5373d4 /apps/plugins/shortcuts | |
| parent | 7210f69d81556b8e7ad43927a9da0e96960bfdee (diff) | |
| download | rockbox-54548df56e36f870f0870a87dc6b9350836859bf.zip rockbox-54548df56e36f870f0870a87dc6b9350836859bf.tar.gz rockbox-54548df56e36f870f0870a87dc6b9350836859bf.tar.bz2 rockbox-54548df56e36f870f0870a87dc6b9350836859bf.tar.xz | |
Fix some size_t related warnings (hopefully, they seem system dependant).
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@25852 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/shortcuts')
| -rw-r--r-- | apps/plugins/shortcuts/shortcuts_common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/shortcuts/shortcuts_common.c b/apps/plugins/shortcuts/shortcuts_common.c index da212a5..0eb8c47 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); void allocate_memory(void **buf, size_t *bufsize) { *buf = rb->plugin_get_buffer(bufsize); - DEBUGF("Got %ld bytes of memory\n", *bufsize); + DEBUGF("Got %zud bytes of memory\n", *bufsize); } |