From c1d0e639a95d6d3d3f1c1f70cf97d596bd5a24ec Mon Sep 17 00:00:00 2001 From: Jakub Jelinek Date: Tue, 15 Feb 2011 13:51:48 -0500 Subject: Fix two printf handler issues. --- stdio-common/printf-parsemb.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'stdio-common/printf-parsemb.c') diff --git a/stdio-common/printf-parsemb.c b/stdio-common/printf-parsemb.c index efd1eca..a67cc1a 100644 --- a/stdio-common/printf-parsemb.c +++ b/stdio-common/printf-parsemb.c @@ -295,9 +295,9 @@ __parse_one_specmb (const UCHAR_T *format, size_t posn, /* We don't try to get the types for all arguments if the format uses more than one. The normal case is covered though. If the call returns -1 we continue with the normal specifiers. */ - || (spec->ndata_args = (*__printf_arginfo_table[spec->info.spec]) - (&spec->info, 1, &spec->data_arg_type, - &spec->size)) < 0) + || (int) (spec->ndata_args = (*__printf_arginfo_table[spec->info.spec]) + (&spec->info, 1, &spec->data_arg_type, + &spec->size)) < 0) { /* Find the data argument types of a built-in spec. */ spec->ndata_args = 1; -- cgit v1.1