mirror of
https://github.com/janet-lang/janet
synced 2025-10-12 06:17:43 +00:00
Remove %u format specifiers.
This commit is contained in:
@@ -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);
|
||||
|
Reference in New Issue
Block a user