mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 00:32:25 -04:00
Fix i386 build following 37df9d3bba.
MFC after: 2 weeks
X-MFC with: 37df9d3bba
This commit is contained in:
parent
a7aa5eea4f
commit
1d010cd31c
1 changed files with 3 additions and 3 deletions
|
|
@ -221,15 +221,15 @@ void MockFS::debug_request(const mockfs_buf_in &in, ssize_t buflen)
|
|||
case FUSE_LSEEK:
|
||||
switch (in.body.lseek.whence) {
|
||||
case SEEK_HOLE:
|
||||
printf(" SEEK_HOLE offset=%ld",
|
||||
printf(" SEEK_HOLE offset=%jd",
|
||||
in.body.lseek.offset);
|
||||
break;
|
||||
case SEEK_DATA:
|
||||
printf(" SEEK_DATA offset=%ld",
|
||||
printf(" SEEK_DATA offset=%jd",
|
||||
in.body.lseek.offset);
|
||||
break;
|
||||
default:
|
||||
printf(" whence=%u offset=%ld",
|
||||
printf(" whence=%u offset=%jd",
|
||||
in.body.lseek.whence, in.body.lseek.offset);
|
||||
break;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue