forked from Imagelibrary/rtems
csb337/umon/tfsDriver.c: Fix warning for ioctl cmd parameter
The cmd parameter was uint32_t and should have been ioctl_command_t.
This commit is contained in:
committed by
Kinsey Moore
parent
8e6ded473c
commit
56c8d65b30
@@ -606,9 +606,9 @@ static int rtems_tfs_ftruncate(
|
||||
}
|
||||
|
||||
static int rtems_tfs_ioctl(
|
||||
rtems_libio_t *iop,
|
||||
uint32_t cmd,
|
||||
void *buf
|
||||
rtems_libio_t *iop,
|
||||
ioctl_command_t cmd,
|
||||
void *buf
|
||||
)
|
||||
{
|
||||
int ret;
|
||||
|
||||
Reference in New Issue
Block a user