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:19:21 +00:00
parent 23e7c74f27
commit 0f07ee7434
2 changed files with 7 additions and 2 deletions
+2 -2
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 )