diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2015-02-13 15:11:34 +0100 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2015-02-13 15:11:34 +0100 |
commit | cc4205dd6d9b6024d4bedf7e58abb1b73f276def (patch) | |
tree | 086ed4d2247cf7e6a686bcd9d591b328b4e4450c | |
parent | 92abe7381596a5baaf62eec3e55172678ed1f1dd (diff) |
Possible win32 fix for missing locale_t type - part4.
-rw-r--r-- | src/nolocale.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nolocale.h b/src/nolocale.h index 3d8d50d..18ae03f 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(str, size, format, vl, l); + ret = vsnprintf_l(str, size, format, vl, l); va_end(vl); _free_locale(l); |