Skip to content

Commit 3f1b9af

Browse files
committed
py/mpprint.c: fix formatting
1 parent c695f8b commit 3f1b9af

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

py/mpprint.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -496,7 +496,7 @@ int mp_vprintf(const mp_print_t *print, const char *fmt, va_list args) {
496496
break;
497497
}
498498
case 'S': {
499-
mp_rom_error_text_t arg = va_arg(args, mp_rom_error_text_t );
499+
mp_rom_error_text_t arg = va_arg(args, mp_rom_error_text_t);
500500
size_t len_with_nul = decompress_length(arg);
501501
size_t len = len_with_nul - 1;
502502
char str[len_with_nul];

0 commit comments

Comments
 (0)