From 710832e5a2266a917e38796f4289d7ccb0588be6 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Sat, 29 Jan 2000 07:44:21 +0000 Subject: [PATCH] Update. 2000-01-28 Ulrich Drepper * stdio-common/vfprintf.c [COMPILE_WPRINT] (_i18n_itoa_word, _i18n_itoa): Fix parameter lists. --- ChangeLog | 5 ++++- stdio-common/vfprintf.c | 5 ++--- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index a77bf71d39..bf601451a9 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,7 @@ -2000-01-28 Ulrich Drepper +2000-01-28 Ulrich Drepper + + * stdio-common/vfprintf.c [COMPILE_WPRINT] (_i18n_itoa_word, + _i18n_itoa): Fix parameter lists. * locale/C-monetary.c: Add initializers for new fields. * locale/C-numeric.c: Likewise. diff --git a/stdio-common/vfprintf.c b/stdio-common/vfprintf.c index 9d8785bf21..d17367fd15 100644 --- a/stdio-common/vfprintf.c +++ b/stdio-common/vfprintf.c @@ -100,9 +100,8 @@ # define _itoa(Val, Buf, Base, Case) _itowa (Val, Buf, Base, Case) # define _itoa_word(Val, Buf, Base, Case) _itowa_word (Val, Buf, Base, Case) -# define _i18n_itoa(Val, Buf, Base, Case) _i18n_itowa (Val, Buf, Base, Case) -# define _i18n_itoa_word(Val, Buf, Base, Case) \ - _i18n_itowa_word (Val, Buf, Base, Case) +# define _i18n_itoa(Val, Buf) _i18n_itowa (Val, Buf) +# define _i18n_itoa_word(Val, Buf) _i18n_itowa_word (Val, Buf) # undef EOF # define EOF WEOF # endif