From 6a99a1fb4c908f2c3084619deb48d31fc8b179ce Mon Sep 17 00:00:00 2001 From: Giovanni Di Sirio Date: Tue, 25 Apr 2017 07:02:27 +0000 Subject: Fixed warning in shell when auto completion is enabled. git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@10171 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- os/various/shell/shell.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'os') diff --git a/os/various/shell/shell.c b/os/various/shell/shell.c index 054a7d6b9..3016dc6e8 100644 --- a/os/various/shell/shell.c +++ b/os/various/shell/shell.c @@ -235,7 +235,7 @@ static int get_history(ShellHistory *shp, char *line, int dir) { #if (SHELL_USE_COMPLETION == TRUE) || defined(__DOXYGEN__) static void get_completions(ShellConfig *scfg, char *line) { - ShellCommand *lcp = shell_local_commands; + const ShellCommand *lcp = shell_local_commands; const ShellCommand *scp = scfg->sc_commands; char **scmp = scfg->sc_completion; char help_cmp[] = "help"; -- cgit v1.2.3