|
@ -36,7 +36,7 @@ |
|
|
static |
|
|
static |
|
|
int |
|
|
int |
|
|
_ioctl(const int fd, |
|
|
_ioctl(const int fd, |
|
|
const long cmd, |
|
|
const int cmd, |
|
|
void *arg, |
|
|
void *arg, |
|
|
const unsigned int flags, |
|
|
const unsigned int flags, |
|
|
void *data) |
|
|
void *data) |
|
@ -92,7 +92,7 @@ namespace mergerfs |
|
|
return -EINVAL; |
|
|
return -EINVAL; |
|
|
|
|
|
|
|
|
return _ioctl(fileinfo->fd, |
|
|
return _ioctl(fileinfo->fd, |
|
|
(long)cmd, |
|
|
cmd, |
|
|
arg, |
|
|
arg, |
|
|
flags, |
|
|
flags, |
|
|
data); |
|
|
data); |
|
|
xxxxxxxxxx