1
0
Fork 0
forked from len0rd/rockbox

Fixed warnings.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2876 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Björn Stenberg 2002-11-22 23:55:08 +00:00
parent b5184d761b
commit ac88b9e5ff
2 changed files with 15 additions and 5 deletions

View file

@ -173,6 +173,12 @@ int ata_read_sectors(unsigned long start,
int count;
void* buf;
if ( incount > 1 )
DEBUGF("[Reading %d blocks: 0x%x to 0x%x]\n",
incount, start, start+incount-1);
else
DEBUGF("[Reading block 0x%x]\n", start);
last_disk_activity = current_tick;
mutex_lock(&ata_mtx);