summaryrefslogtreecommitdiff
path: root/FreeRTOS/Demo/RX100-RSK_Renesas_e2studio
diff options
context:
space:
mode:
authorrtel <rtel@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>2013-12-27 14:43:48 +0000
committerrtel <rtel@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>2013-12-27 14:43:48 +0000
commit2495829d0db7359332a66216e020282ee802c806 (patch)
treeb2f741012a673c062e870239df3a250291325e31 /FreeRTOS/Demo/RX100-RSK_Renesas_e2studio
parent0f14bb40b9a1dad50708f43d35283e7093e9fa04 (diff)
downloadfreertos-2495829d0db7359332a66216e020282ee802c806.tar.gz
Start to remove unnecessary 'signed char *' casts from strings that are now just plain char * types.
git-svn-id: http://svn.code.sf.net/p/freertos/code/trunk@2143 1d2547de-c912-0410-9cb9-b8ca96c0e9e2
Diffstat (limited to 'FreeRTOS/Demo/RX100-RSK_Renesas_e2studio')
-rw-r--r--FreeRTOS/Demo/RX100-RSK_Renesas_e2studio/RTOSDemo/main_full.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/FreeRTOS/Demo/RX100-RSK_Renesas_e2studio/RTOSDemo/main_full.c b/FreeRTOS/Demo/RX100-RSK_Renesas_e2studio/RTOSDemo/main_full.c
index 04184a0b5..763f9eb39 100644
--- a/FreeRTOS/Demo/RX100-RSK_Renesas_e2studio/RTOSDemo/main_full.c
+++ b/FreeRTOS/Demo/RX100-RSK_Renesas_e2studio/RTOSDemo/main_full.c
@@ -206,7 +206,7 @@ void main_full( void )
/* Create the software timer that performs the 'check' functionality,
as described at the top of this file. */
- xCheckTimer = xTimerCreate( ( const signed char * ) "CheckTimer",/* A text name, purely to help debugging. */
+ xCheckTimer = xTimerCreate( "CheckTimer",/* A text name, purely to help debugging. */
( mainCHECK_TIMER_PERIOD_MS ), /* The timer period, in this case 5000ms (5s). */
pdTRUE, /* This is an auto-reload timer, so xAutoReload is set to pdTRUE. */
( void * ) 0, /* The ID is not used, so can be set to anything. */