mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
biosdisk.c: fix type in debug printf
Sponsored by: Klara Systems
This commit is contained in:
parent
23e7fe13ee
commit
f567034d1b
1 changed files with 1 additions and 1 deletions
|
|
@ -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");
|
||||
|
|
|
|||
Loading…
Reference in a new issue