biosdisk.c: fix type in debug printf

Sponsored by:	Klara Systems
This commit is contained in:
Allan Jude 2018-06-16 06:23:07 +00:00
parent 23e7fe13ee
commit f567034d1b
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=335248

View File

@ -635,7 +635,7 @@ bd_realstrategy(void *devdata, int rw, daddr_t dblk, size_t size,
#endif
break;
case F_WRITE :
DEBUG("write %d from %d to %p", blks, dblk, buf);
DEBUG("write %d from %lld to %p", blks, dblk, buf);
if (blks && bd_write(dev, dblk, blks, buf)) {
DEBUG("write error");