From 3535efd977418224e502c57aa38e835f647bc852 Mon Sep 17 00:00:00 2001 From: Calvin Rose Date: Sun, 26 Apr 2020 13:47:36 -0500 Subject: [PATCH] Remove %u format specifiers. --- src/core/pp.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/core/pp.c b/src/core/pp.c index 7dbdc31d..a68b3faf 100644 --- a/src/core/pp.c +++ b/src/core/pp.c @@ -751,7 +751,6 @@ void janet_formatbv(JanetBuffer *b, const char *format, va_list args) { case 'd': case 'i': case 'o': - case 'u': case 'x': case 'X': { int32_t n = va_arg(args, long); @@ -910,7 +909,6 @@ void janet_buffer_format( case 'd': case 'i': case 'o': - case 'u': case 'x': case 'X': { int32_t n = janet_getinteger(argv, arg);