summaryrefslogtreecommitdiff
path: root/FreeRTOS-Plus
diff options
context:
space:
mode:
authorrichardbarry <richardbarry@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>2013-05-19 09:43:00 +0000
committerrichardbarry <richardbarry@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>2013-05-19 09:43:00 +0000
commit8146cb74e346d1e8d6f8a01cb678cfa9f6d78380 (patch)
treeb7fbc986805e1ac018498b1c5043bf0a74faccb8 /FreeRTOS-Plus
parenta626e10140bec8bc2bf3294e50848960e91c8fa0 (diff)
downloadfreertos-8146cb74e346d1e8d6f8a01cb678cfa9f6d78380.tar.gz
Fix compiler warning in psp_test.c when compiled with ARM compiler.
Add portYIELD_FROM_ISR() macros to Cortex-M ports. The new macro just calls the exiting portEND_SWITCHING_ISR() macro. Remove code from the MSVC port layer that was left over from a previous implementation and become obsolete. git-svn-id: http://svn.code.sf.net/p/freertos/code/trunk@1898 1d2547de-c912-0410-9cb9-b8ca96c0e9e2
Diffstat (limited to 'FreeRTOS-Plus')
-rw-r--r--FreeRTOS-Plus/Source/FreeRTOS-Plus-FAT-SL/psp/target/fat_sl/psp_test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/FreeRTOS-Plus/Source/FreeRTOS-Plus-FAT-SL/psp/target/fat_sl/psp_test.c b/FreeRTOS-Plus/Source/FreeRTOS-Plus-FAT-SL/psp/target/fat_sl/psp_test.c
index 62446fe44..e54321420 100644
--- a/FreeRTOS-Plus/Source/FreeRTOS-Plus-FAT-SL/psp/target/fat_sl/psp_test.c
+++ b/FreeRTOS-Plus/Source/FreeRTOS-Plus-FAT-SL/psp/target/fat_sl/psp_test.c
@@ -70,7 +70,7 @@ uint8_t _f_result ( uint8_t testnum, uint32_t result )
}
else
{
- printf( "FAILED! Error code: %u\r\n", result );
+ printf( "FAILED! Error code: %u\r\n", ( unsigned int ) result );
all_tests_passed = 0u;
}