From 56c8d65b30a95720fdfec35d03327caddda9ffee Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Mon, 10 Feb 2025 09:07:02 -0600 Subject: [PATCH] csb337/umon/tfsDriver.c: Fix warning for ioctl cmd parameter The cmd parameter was uint32_t and should have been ioctl_command_t. --- bsps/arm/csb337/umon/tfsDriver.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bsps/arm/csb337/umon/tfsDriver.c b/bsps/arm/csb337/umon/tfsDriver.c index 036f3f28c3..467a430cfc 100644 --- a/bsps/arm/csb337/umon/tfsDriver.c +++ b/bsps/arm/csb337/umon/tfsDriver.c @@ -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;