mirror of
https://git.code.sf.net/p/ntfs-3g/ntfs-3g.git
synced 2024-11-23 10:04:00 +08:00
Fixed defining the request argument of ioctl()
An occurrence of changing the request from int to unsigned long was missing.
This commit is contained in:
parent
3f65ccd949
commit
4163390f2b
@ -389,7 +389,8 @@ free_out:
|
||||
|
||||
#endif /* FITRIM && BLKDISCARD */
|
||||
|
||||
int ntfs_ioctl(ntfs_inode *ni, int cmd, void *arg __attribute__((unused)),
|
||||
int ntfs_ioctl(ntfs_inode *ni, unsigned long cmd,
|
||||
void *arg __attribute__((unused)),
|
||||
unsigned int flags __attribute__((unused)), void *data)
|
||||
{
|
||||
int ret = 0;
|
||||
|
Loading…
Reference in New Issue
Block a user