diff options
Diffstat (limited to 'os/various')
-rw-r--r-- | os/various/shell/shell_cmd.c | 2 | ||||
-rw-r--r-- | os/various/shell/shell_cmd.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/os/various/shell/shell_cmd.c b/os/various/shell/shell_cmd.c index 724d83351..fd28aa89a 100644 --- a/os/various/shell/shell_cmd.c +++ b/os/various/shell/shell_cmd.c @@ -197,7 +197,7 @@ static void cmd_test(BaseSequentialStream *chp, int argc, char *argv[]) { /**
* @brief Array of the default commands.
*/
-ShellCommand shell_local_commands[] = {
+const ShellCommand shell_local_commands[] = {
#if (SHELL_CMD_EXIT_ENABLED == TRUE) && !defined(_CHIBIOS_NIL_)
{"exit", cmd_exit},
#endif
diff --git a/os/various/shell/shell_cmd.h b/os/various/shell/shell_cmd.h index 4eac1a122..2fd454d7d 100644 --- a/os/various/shell/shell_cmd.h +++ b/os/various/shell/shell_cmd.h @@ -94,7 +94,7 @@ /*===========================================================================*/
#if !defined(__DOXYGEN__)
-extern ShellCommand shell_local_commands[];
+extern const ShellCommand shell_local_commands[];
#endif
#ifdef __cplusplus
|