1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

turo: add space after JSON comma

This commit is contained in:
Kaspar Schleiser 2021-10-21 13:02:21 +02:00
parent 0486c0dba7
commit 1c8a8bf6c4

View File

@ -16,7 +16,7 @@
static void _print_comma(turo_t *ctx, turo_state_t state)
{
if (ctx->state == TURO_STATE_NEED_COMMA) {
print_str(",");
print_str(", ");
}
ctx->state = state;
}