File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed
porting/examples/linux_blemesh_shell/include/shell Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -131,20 +131,20 @@ struct shell_module {
131
131
* @brief constructs a legacy shell command.
132
132
*/
133
133
#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_), \
138
138
}
139
139
140
140
/**
141
141
* @brief constructs an extended shell command.
142
142
*/
143
143
#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_), \
148
148
}
149
149
150
150
/** @brief Register a shell_module object
You can’t perform that action at this time.
0 commit comments