git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/stable_16.1.x@9957 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
Giovanni Di Sirio 2016-12-13 08:47:50 +00:00
parent 1725896c7b
commit 3474c049a8
2 changed files with 2 additions and 1 deletions

View File

@ -109,7 +109,7 @@ static void cmd_systime(BaseSequentialStream *chp, int argc, char *argv[]) {
/**
* @brief Array of the default commands.
*/
static ShellCommand local_commands[] = {
static const ShellCommand local_commands[] = {
{"info", cmd_info},
{"systime", cmd_systime},
{NULL, NULL}

View File

@ -73,6 +73,7 @@
*****************************************************************************
*** 16.1.6 ***
- VAR: Fixed missing const qualifier in local shell commands array (bug #797).
- HAL: Fixed double empty lines in HAL (bug #794).
- RT: Fixed double empty lines in RT (bug #793).
- HAL: Fixed wrong entries in STM32L4 registry (bug #792).