Signed-off-by: Martin Storsjö <mar...@martin.st> --- mingw-w64-headers/crt/stdio.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/mingw-w64-headers/crt/stdio.h b/mingw-w64-headers/crt/stdio.h index 7365994..cea5559 100644 --- a/mingw-w64-headers/crt/stdio.h +++ b/mingw-w64-headers/crt/stdio.h @@ -530,11 +530,11 @@ int vsnprintf (char *__stream, size_t __n, const char *__format, __builtin_va_li int __cdecl asprintf(char ** __restrict__ ret,const char * __restrict__ format,...) __attribute__ ((format (__MINGW_PRINTF_FORMAT, 2, 3))) { __builtin_va_list ap; - int ret; - __builtin_va_start(ap, _Format); - ret = vasprintf(ret, format, ap); + int n; + __builtin_va_start(ap, format); + n = vasprintf(ret, format, ap); __builtin_va_end(ap); - return ret; + return n; } #endif /*_GNU_SOURCE*/ -- 2.7.4 ------------------------------------------------------------------------------ Check out the vibrant tech community on one of the world's most engaging tech sites, Slashdot.org! http://sdm.link/slashdot _______________________________________________ Mingw-w64-public mailing list Mingw-w64-public@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/mingw-w64-public