ICU-2256 Maybe this will fix a compiler warning on z/OS.

X-SVN-Rev: 13640
This commit is contained in:
George Rhoten 2003-11-08 01:44:43 +00:00
parent 1c49c75a8e
commit 0317f272a3
2 changed files with 2 additions and 2 deletions

View file

@ -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;

View file

@ -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;