X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=FreeRTOS%2FDemo%2FCORTEX_A9_RZ_R7S72100_IAR_DS-5%2FSource%2FFull-Demo%2FFile-system-demo.c;h=dd2973ad08f8bdc77e3f9a893303316740fa42d7;hb=61e4c8bcd10d8a2d87dfda1962932c88f0c7a92f;hp=e42fd155176619f17b53970ee0b073a5a0d5aea3;hpb=abf43e0ca4466819c7c77a7bb37d72aa9175e471;p=freertos diff --git a/FreeRTOS/Demo/CORTEX_A9_RZ_R7S72100_IAR_DS-5/Source/Full-Demo/File-system-demo.c b/FreeRTOS/Demo/CORTEX_A9_RZ_R7S72100_IAR_DS-5/Source/Full-Demo/File-system-demo.c index e42fd1551..dd2973ad0 100644 --- a/FreeRTOS/Demo/CORTEX_A9_RZ_R7S72100_IAR_DS-5/Source/Full-Demo/File-system-demo.c +++ b/FreeRTOS/Demo/CORTEX_A9_RZ_R7S72100_IAR_DS-5/Source/Full-Demo/File-system-demo.c @@ -1,5 +1,5 @@ /* - FreeRTOS V7.6.0 - Copyright (C) 2013 Real Time Engineers Ltd. + FreeRTOS V8.0.0:rc1 - Copyright (C) 2014 Real Time Engineers Ltd. All rights reserved FEATURES AND PORTS ARE ADDED TO FREERTOS ALL THE TIME. PLEASE VISIT @@ -302,7 +302,7 @@ char cFileName[ fsMAX_FILE_NAME_LEN ]; /* Obtain and print out the working directory. */ f_getcwd( cRAMBuffer, fsRAM_BUFFER_SIZE ); printf( "In directory %s\r\n", cRAMBuffer ); - configASSERT( strcmp( ( const char * ) cRAMBuffer, pcFullPath ) == 0 ); + configASSERT( strcmp( cRAMBuffer, pcFullPath ) == 0 ); /* Generate the file name. */ sprintf( cFileName, "%s.txt", pcDirectory2 ); @@ -331,7 +331,7 @@ char cFileName[ fsMAX_FILE_NAME_LEN ]; /* Obtain and print out the working directory. */ f_getcwd( cRAMBuffer, fsRAM_BUFFER_SIZE ); printf( "Back in root directory %s\r\n", cRAMBuffer ); - configASSERT( strcmp( ( const char * ) cRAMBuffer, pcRoot ) == 0 ); + configASSERT( strcmp( cRAMBuffer, pcRoot ) == 0 ); } /*-----------------------------------------------------------*/ @@ -349,7 +349,7 @@ char cFileName[ fsMAX_FILE_NAME_LEN ]; /* Obtain and print out the working directory. */ f_getcwd( cRAMBuffer, fsRAM_BUFFER_SIZE ); printf( "Back in directory %s\r\n", cRAMBuffer ); - configASSERT( strcmp( ( const char * ) cRAMBuffer, pcFullPath ) == 0 ); + configASSERT( strcmp( cRAMBuffer, pcFullPath ) == 0 ); /* Generate the file name. */ sprintf( cFileName, "%s.txt", pcDirectory2 );