changeset 237:c55ebc438243

Oops, s/vsnpintf/vsnprintf/.
author Matti Hamalainen <ccr@tnsp.org>
date Tue, 16 Feb 2016 16:01:02 +0200
parents 334adfa3f646
children d3ab9d263409
files th_string.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/th_string.c	Tue Feb 16 16:00:44 2016 +0200
+++ b/th_string.c	Tue Feb 16 16:01:02 2016 +0200
@@ -346,7 +346,7 @@
 
     return th_vprintf_do((void *) &ctx, th_pbuf_vputch, fmt, ap);
 #else
-    return vsnpintf(buf, size, fmt, ap);
+    return vsnprintf(buf, size, fmt, ap);
 #endif
 }