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:
Joel Sherrill
2003-09-26 17:21:16 +00:00
parent 657145218c
commit 174bf23ac4
2 changed files with 7 additions and 2 deletions

View File

@@ -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>
PR 487/filesystem

View File

@@ -682,8 +682,8 @@ fat_file_ioctl(
switch (cmd)
{
case F_CLU_NUM:
pos = va_arg(ap, int);
ret = va_arg(ap, int *);
pos = va_arg(ap, unsigned32);
ret = va_arg(ap, unsigned32 *);
/* sanity check */
if ( pos >= fat_fd->fat_file_size )