mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2025-11-16 12:34:45 +00:00
2003-09-26 Joel Sherrill <joel@OARcorp.com>
PR 492/filesystem * src/dosfs/fat_file.c: Fix inconsistent types in va_args call.
This commit is contained in:
@@ -1,3 +1,8 @@
|
|||||||
|
2003-09-26 Joel Sherrill <joel@OARcorp.com>
|
||||||
|
|
||||||
|
PR 492/filesystem
|
||||||
|
* src/dosfs/fat_file.c: Fix inconsistent types in va_args call.
|
||||||
|
|
||||||
2003-09-09 Ralf Corsepius <ralf_corsepius@rtems.com>
|
2003-09-09 Ralf Corsepius <ralf_corsepius@rtems.com>
|
||||||
|
|
||||||
PR 487/filesystem
|
PR 487/filesystem
|
||||||
|
|||||||
@@ -682,8 +682,8 @@ fat_file_ioctl(
|
|||||||
switch (cmd)
|
switch (cmd)
|
||||||
{
|
{
|
||||||
case F_CLU_NUM:
|
case F_CLU_NUM:
|
||||||
pos = va_arg(ap, int);
|
pos = va_arg(ap, unsigned32);
|
||||||
ret = va_arg(ap, int *);
|
ret = va_arg(ap, unsigned32 *);
|
||||||
|
|
||||||
/* sanity check */
|
/* sanity check */
|
||||||
if ( pos >= fat_fd->fat_file_size )
|
if ( pos >= fat_fd->fat_file_size )
|
||||||
|
|||||||
Reference in New Issue
Block a user