From e51a8dfe6e795e611ae6ce9f2a4b2c22875af209 Mon Sep 17 00:00:00 2001 From: Sebastian Rasmussen Date: Tue, 8 Aug 2017 01:56:54 +0800 Subject: Remove unused octal value printing support. --- source/fitz/printf.c | 4 ---- 1 file changed, 4 deletions(-) (limited to 'source') diff --git a/source/fitz/printf.c b/source/fitz/printf.c index 010c9298..41b3fe34 100644 --- a/source/fitz/printf.c +++ b/source/fitz/printf.c @@ -391,10 +391,6 @@ fz_format_string(fz_context *ctx, void *user, void (*emit)(fz_context *ctx, void fmtuint32(&out, i32, s, z, w, 10); } break; - case 'o': - i32 = va_arg(args, int); - fmtint32(&out, i32, s, z, w, 8); - break; case 's': str = va_arg(args, const char*); -- cgit v1.2.3