1
0
mirror of https://github.com/janet-lang/janet synced 2024-11-25 09:47:17 +00:00

Remove %u format specifiers.

This commit is contained in:
Calvin Rose 2020-04-26 13:47:36 -05:00
parent f6bd41ada7
commit 3535efd977

View File

@ -751,7 +751,6 @@ void janet_formatbv(JanetBuffer *b, const char *format, va_list args) {
case 'd': case 'd':
case 'i': case 'i':
case 'o': case 'o':
case 'u':
case 'x': case 'x':
case 'X': { case 'X': {
int32_t n = va_arg(args, long); int32_t n = va_arg(args, long);
@ -910,7 +909,6 @@ void janet_buffer_format(
case 'd': case 'd':
case 'i': case 'i':
case 'o': case 'o':
case 'u':
case 'x': case 'x':
case 'X': { case 'X': {
int32_t n = janet_getinteger(argv, arg); int32_t n = janet_getinteger(argv, arg);