From: Volker Lendecke Date: Wed, 11 Feb 2015 17:16:50 +0100 Subject: [PATCH] snprintf: Try to support %j --- lib/replace/snprintf.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/replace/snprintf.c b/lib/replace/snprintf.c index 6b4a711..86ba74c 100644 --- a/lib/replace/snprintf.c Wed Oct 1 05:16:21 2014 +++ b/lib/replace/snprintf.c Wed Feb 11 11:49:36 2015 @@ -445,6 +445,10 @@ ch = *format++; } break; + case 'j': + cnk->cflags = DP_C_LLONG; + ch = *format++; + break; case 'L': cnk->cflags = DP_C_LDOUBLE; ch = *format++;