Skip to content

Commit 895ed28

Browse files
yyysjanc
authored andcommitted
revert coding style change
1 parent 85f9559 commit 895ed28

File tree

1 file changed

+8
-8
lines changed
  • porting/examples/linux_blemesh_shell/include/shell

1 file changed

+8
-8
lines changed

porting/examples/linux_blemesh_shell/include/shell/shell.h

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -131,20 +131,20 @@ struct shell_module {
131131
* @brief constructs a legacy shell command.
132132
*/
133133
#define SHELL_CMD(cmd_, func_, help_) { \
134-
.sc_ext = 0, \
135-
.sc_cmd_func = func_, \
136-
.sc_cmd = cmd_, \
137-
.help = SHELL_HELP_(help_), \
134+
.sc_ext = 0, \
135+
.sc_cmd_func = func_, \
136+
.sc_cmd = cmd_, \
137+
.help = SHELL_HELP_(help_), \
138138
}
139139

140140
/**
141141
* @brief constructs an extended shell command.
142142
*/
143143
#define SHELL_CMD_EXT(cmd_, func_, help_) { \
144-
.sc_ext = 1, \
145-
.sc_cmd_ext_func = func_, \
146-
.sc_cmd = cmd_, \
147-
.help = SHELL_HELP_(help_), \
144+
.sc_ext = 1, \
145+
.sc_cmd_ext_func = func_, \
146+
.sc_cmd = cmd_, \
147+
.help = SHELL_HELP_(help_), \
148148
}
149149

150150
/** @brief Register a shell_module object

0 commit comments

Comments
 (0)