summaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
Diffstat (limited to 'source')
-rw-r--r--source/fitz/printf.c4
1 files changed, 0 insertions, 4 deletions
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*);