From 081b07df63a2a88fd2d2f6659c0ba4fbb24f5580 Mon Sep 17 00:00:00 2001 From: kugel Date: Thu, 18 Feb 2010 17:19:10 +0000 Subject: [PATCH] Fix yellow caused by signedness. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24756 a1c6a512-1295-4272-9138-f99709370657 --- apps/buffering.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/buffering.c b/apps/buffering.c index c477b4e0f..676d05d3d 100644 --- a/apps/buffering.c +++ b/apps/buffering.c @@ -684,7 +684,7 @@ static bool buffer_handle(int handle_id) /* stop buffering data for now and post-pone buffering the rest */ stop = true; DEBUGF( "%s(): Preventing handle corruption: h1.id:%d h2.id:%d" - " copy_n:%ld overlap:%ld h1.filerem:%ld\n", __func__, + " copy_n:%lu overlap:%ld h1.filerem:%lu\n", __func__, h->id, h->next->id, copy_n, overlap, h->filerem); copy_n -= overlap; } -- 2.11.4.GIT