Hopefully fix yellow now, I don't understand why %ld works for ssize_t but %lu not for size_t (and still no warnings on my system).

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24757 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Thomas Martitz 2010-02-18 17:43:55 +00:00
parent 81187d88fd
commit 4c78ecaa5e

View file

@ -685,7 +685,8 @@ static bool buffer_handle(int handle_id)
stop = true;
DEBUGF( "%s(): Preventing handle corruption: h1.id:%d h2.id:%d"
" copy_n:%lu overlap:%ld h1.filerem:%lu\n", __func__,
h->id, h->next->id, copy_n, overlap, h->filerem);
h->id, h->next->id, (unsigned long)copy_n, overlap,
(unsigned long)h->filerem);
copy_n -= overlap;
}