Skip to content

Commit

Permalink
feat(log): Use Space to replace tab to split multiple arguments
Browse files Browse the repository at this point in the history
Signed-off-by: Jianhui Zhao <zhaojh329@gmail.com>
  • Loading branch information
zhaojh329 committed Mar 9, 2024
1 parent cdca8bf commit 557b319
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion log.c
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ static void __lua_log(lua_State *L, int priority)
}

if (i > 1) {
*pos++ = '\t';
*pos++ = ' ';
room--;
}

Expand Down

0 comments on commit 557b319

Please sign in to comment.