From: richardbarry Date: Fri, 16 Aug 2013 13:34:28 +0000 (+0000) Subject: Convert double quotes in a command help string to single quotes to allow the string... X-Git-Tag: V7.5.3~61 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=1da9e4d09f34d3dbe4d014d2529de5f3cc49d08c;p=freertos Convert double quotes in a command help string to single quotes to allow the string to be processed by Javascript. git-svn-id: https://svn.code.sf.net/p/freertos/code/trunk@2005 1d2547de-c912-0410-9cb9-b8ca96c0e9e2 --- diff --git a/FreeRTOS-Plus/Source/FreeRTOS-Plus-CLI/FreeRTOS_CLI.c b/FreeRTOS-Plus/Source/FreeRTOS-Plus-CLI/FreeRTOS_CLI.c index 9e1ae4d9c..b41e86b7a 100644 --- a/FreeRTOS-Plus/Source/FreeRTOS-Plus-CLI/FreeRTOS_CLI.c +++ b/FreeRTOS-Plus/Source/FreeRTOS-Plus-CLI/FreeRTOS_CLI.c @@ -206,7 +206,7 @@ size_t xCommandStringLength; else { /* pxCommand was NULL, the command was not found. */ - strncpy( ( char * ) pcWriteBuffer, ( const char * const ) "Command not recognised. Enter \"help\" to view a list of available commands.\r\n\r\n", xWriteBufferLen ); + strncpy( ( char * ) pcWriteBuffer, ( const char * const ) "Command not recognised. Enter 'help' to view a list of available commands.\r\n\r\n", xWriteBufferLen ); xReturn = pdFALSE; }