forked from len0rd/rockbox
Fix yellow caused by signedness.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24756 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
df79ac2f9d
commit
81187d88fd
1 changed files with 1 additions and 1 deletions
|
|
@ -684,7 +684,7 @@ static bool buffer_handle(int handle_id)
|
||||||
/* stop buffering data for now and post-pone buffering the rest */
|
/* stop buffering data for now and post-pone buffering the rest */
|
||||||
stop = true;
|
stop = true;
|
||||||
DEBUGF( "%s(): Preventing handle corruption: h1.id:%d h2.id:%d"
|
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);
|
h->id, h->next->id, copy_n, overlap, h->filerem);
|
||||||
copy_n -= overlap;
|
copy_n -= overlap;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue