From 7a1136d0efdc71251104dd2f4cbbda03887e0e9d Mon Sep 17 00:00:00 2001 From: Bent Bisballe Nyeng Date: Fri, 13 Feb 2015 15:14:27 +0100 Subject: Possible win32 fix for missing locale_t type - part5. --- src/nolocale.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nolocale.h b/src/nolocale.h index 18ae03f..59489cd 100644 --- a/src/nolocale.h +++ b/src/nolocale.h @@ -104,7 +104,7 @@ static inline int snprintf_nol(char *str, size_t size, const char *format, ...) va_list vl; va_start(vl, format); - ret = vsnprintf_l(str, size, format, vl, l); + ret = _vsnprintf_l(str, size, format, vl, l); va_end(vl); _free_locale(l); -- cgit v1.2.3