mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-06 14:05:32 +00:00
ICU-3499 Fix for os/400
X-SVN-Rev: 15297
This commit is contained in:
parent
190cb67d55
commit
75d663ecec
2 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||
|
||||
|
|
|
@ -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 */
|
||||
|
|
Loading…
Add table
Reference in a new issue