diff options
Diffstat (limited to 'lib/replace/snprintf.c')
-rw-r--r-- | lib/replace/snprintf.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/replace/snprintf.c b/lib/replace/snprintf.c index 6b4a711045..86ba74cf4f 100644 --- a/lib/replace/snprintf.c +++ b/lib/replace/snprintf.c @@ -445,6 +445,10 @@ static int dopr(char *buffer, size_t maxlen, const char *format, va_list args_in ch = *format++; } break; + case 'j': + cnk->cflags = DP_C_LLONG; + ch = *format++; + break; case 'L': cnk->cflags = DP_C_LDOUBLE; ch = *format++; |