ICU-3499 Fix for os/400

X-SVN-Rev: 15297
This commit is contained in:
George Rhoten 2004-05-13 22:04:27 +00:00
parent 190cb67d55
commit 75d663ecec
2 changed files with 2 additions and 2 deletions

View file

@ -113,7 +113,7 @@ u_vsscanf_u(const UChar *buffer,
return 0;
}
converted = u_scanf_parse(&inStr, patternSpecification, &ap);
converted = u_scanf_parse(&inStr, patternSpecification, (va_list*)&ap);
u_locbund_close(&inStr.str.fBundle);

View file

@ -98,7 +98,7 @@ u_vfscanf_u(UFILE *f,
const UChar *patternSpecification,
va_list ap)
{
return u_scanf_parse(f, patternSpecification, &ap);
return u_scanf_parse(f, patternSpecification, (va_list*)&ap);
}
#endif /* #if !UCONFIG_NO_FORMATTING */