# HG changeset patch # User Matti Hamalainen # Date 1455631262 -7200 # Node ID c55ebc438243d1bb790fb7937791b6f360ac13c5 # Parent 334adfa3f646f6b09078c78dee66c9aaee7d67c7 Oops, s/vsnpintf/vsnprintf/. diff -r 334adfa3f646 -r c55ebc438243 th_string.c --- 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 }