X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=libiberty%2Fvsnprintf.c;h=647fb7a35793a8cd5b07177f0eaefcd807ac266e;hb=452f10a186cdb18091f590315c55488b871812e3;hp=6c0afa6726cbc870643eb3aab4b48e0078ed719e;hpb=d4d868a28076273e828f299e896dbc1af827208a;p=deliverable%2Fbinutils-gdb.git diff --git a/libiberty/vsnprintf.c b/libiberty/vsnprintf.c index 6c0afa6726..647fb7a357 100644 --- a/libiberty/vsnprintf.c +++ b/libiberty/vsnprintf.c @@ -1,5 +1,5 @@ /* Implement the vsnprintf function. - Copyright (C) 2003, 2004, 2005, 2011 Free Software Foundation, Inc. + Copyright (C) 2003-2019 Free Software Foundation, Inc. Written by Kaveh R. Ghazi . This file is part of the libiberty library. This library is free @@ -95,12 +95,10 @@ static int ATTRIBUTE_PRINTF_3 checkit (char *s, size_t n, const char *format, ...) { int result; - VA_OPEN (ap, format); - VA_FIXEDARG (ap, char *, s); - VA_FIXEDARG (ap, size_t, n); - VA_FIXEDARG (ap, const char *, format); + va_list ap; + va_start (ap, format); result = vsnprintf (s, n, format, ap); - VA_CLOSE (ap); + va_end (ap); return result; }