This is an automated email from the ASF dual-hosted git repository. janc pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/mynewt-nimble.git
commit 895ed28b99080cef86828c3629fe53b4f80004e3 Author: yyy <[email protected]> AuthorDate: Mon Dec 23 16:23:37 2024 +0800 revert coding style change --- .../examples/linux_blemesh_shell/include/shell/shell.h | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/porting/examples/linux_blemesh_shell/include/shell/shell.h b/porting/examples/linux_blemesh_shell/include/shell/shell.h index 4135010f7..75130487d 100644 --- a/porting/examples/linux_blemesh_shell/include/shell/shell.h +++ b/porting/examples/linux_blemesh_shell/include/shell/shell.h @@ -131,20 +131,20 @@ struct shell_module { * @brief constructs a legacy shell command. */ #define SHELL_CMD(cmd_, func_, help_) { \ - .sc_ext = 0, \ - .sc_cmd_func = func_, \ - .sc_cmd = cmd_, \ - .help = SHELL_HELP_(help_), \ + .sc_ext = 0, \ + .sc_cmd_func = func_, \ + .sc_cmd = cmd_, \ + .help = SHELL_HELP_(help_), \ } /** * @brief constructs an extended shell command. */ #define SHELL_CMD_EXT(cmd_, func_, help_) { \ - .sc_ext = 1, \ - .sc_cmd_ext_func = func_, \ - .sc_cmd = cmd_, \ - .help = SHELL_HELP_(help_), \ + .sc_ext = 1, \ + .sc_cmd_ext_func = func_, \ + .sc_cmd = cmd_, \ + .help = SHELL_HELP_(help_), \ } /** @brief Register a shell_module object
