Skip to content

Commit 14d813f

Browse files
authored
bug fix
1 parent d0370f7 commit 14d813f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

02_start/linux/base64/base64.c

+2-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@ static uint8_t msg[] =
1818
void dump_buf(char *info, uint8_t *buf, uint32_t len)
1919
{
2020
mbedtls_printf("%s", info);
21-
for(uint32_t i = 0; i < len; i++) {
21+
for(uint32_t i = 0; i < len; i++)
22+
{
2223
mbedtls_printf("%02x ", buf[i]);
2324
}
2425
mbedtls_printf("\n");

0 commit comments

Comments
 (0)