From: Ulrich Drepper Date: Tue, 10 Jan 2006 18:18:07 +0000 (+0000) Subject: * wcsmbs/bits/wchar2.h (vswprintf): Call __vswprintf_alias rather than X-Git-Tag: cvs/fedora-glibc-20060130T0922~83 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=debf73246a6ba873e912fd446f711a0c09b6586a;p=platform%2Fupstream%2Fglibc.git * wcsmbs/bits/wchar2.h (vswprintf): Call __vswprintf_alias rather than vswprintf recursively. --- diff --git a/ChangeLog b/ChangeLog index 4032db5..b355269 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2006-01-10 Jakub Jelinek + + * wcsmbs/bits/wchar2.h (vswprintf): Call __vswprintf_alias rather than + vswprintf recursively. + 2006-01-10 Ulrich Drepper * sysdeps/x86_64/bits/setjmp.h: Add back accidently removed #endif. diff --git a/wcsmbs/bits/wchar2.h b/wcsmbs/bits/wchar2.h index 6eac952..00fd877 100644 --- a/wcsmbs/bits/wchar2.h +++ b/wcsmbs/bits/wchar2.h @@ -1,5 +1,5 @@ /* Checking macros for wchar functions. - Copyright (C) 2005 Free Software Foundation, Inc. + Copyright (C) 2005, 2006 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -224,7 +224,7 @@ __NTH (vswprintf (wchar_t *__s, size_t __n, __const wchar_t *__format, if (__bos (__s) != (size_t) -1 || __USE_FORTIFY_LEVEL > 1) return __vswprintf_chk (__s, __n, __USE_FORTIFY_LEVEL - 1, __bos (__s), __format, __arg); - return vswprintf (__s, __n, __format, __arg); + return __vswprintf_alias (__s, __n, __format, __arg); }