mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-08 06:53:45 +00:00
ICU-2256 Maybe this will fix a compiler warning on z/OS.
X-SVN-Rev: 13640
This commit is contained in:
parent
1c49c75a8e
commit
0317f272a3
2 changed files with 2 additions and 2 deletions
|
@ -262,7 +262,7 @@ u_vsnprintf_u(UChar *buffer,
|
|||
}
|
||||
|
||||
/* parse and print the specifier */
|
||||
patCount = u_printf_print_spec(&g_sprintf_stream_handler, alias, &outStr, &outStr.fBundle, (int32_t)(alias - lastAlias), &written, &ap);
|
||||
patCount = u_printf_print_spec(&g_sprintf_stream_handler, alias, &outStr, &outStr.fBundle, (int32_t)(alias - lastAlias), &written, (va_list*)&ap);
|
||||
|
||||
/* update the pointer in pattern and continue */
|
||||
alias += patCount;
|
||||
|
|
|
@ -175,7 +175,7 @@ u_vfprintf_u( UFILE *f,
|
|||
}
|
||||
|
||||
/* parse and print the specifier */
|
||||
patCount = u_printf_print_spec(&g_stream_handler, alias, f, &f->fBundle, patCount, &written, &ap);
|
||||
patCount = u_printf_print_spec(&g_stream_handler, alias, f, &f->fBundle, patCount, &written, (va_list*)&ap);
|
||||
|
||||
/* update the pointer in pattern and continue */
|
||||
alias += patCount;
|
||||
|
|
Loading…
Add table
Reference in a new issue