Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FreeRTOS/FreeRTOS-Kernel.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSoren Ptak <ptaksoren@gmail.com>2023-09-06 00:24:04 +0300
committerGitHub <noreply@github.com>2023-09-06 00:24:04 +0300
commit5fb9b50da8f1e02fa0c81ee43d7961c479ef5f12 (patch)
tree9793a4eaf8b469d7854a86e4e8d4c69bd4c12043 /timers.c
parentd6bccb1f4ca18e4e339696e780d18334e3462710 (diff)
CI-CD Updates (#768)
* Use new version of CI-CD Actions * Use cSpell spell check, and use ubuntu-20.04 for formatting check * Format and spell check all files in the portable directory * Remove the https:// from #errors and #warnings as uncrustify attempts to change it to /* * Use checkout@v3 instead of checkout@v2 on all jobs ---------
Diffstat (limited to 'timers.c')
-rw-r--r--timers.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/timers.c b/timers.c
index f2a210c51..abe39e12c 100644
--- a/timers.c
+++ b/timers.c
@@ -294,7 +294,7 @@
{
Timer_t * pxNewTimer;
- pxNewTimer = ( Timer_t * ) pvPortMalloc( sizeof( Timer_t ) ); /*lint !e9087 !e9079 All values returned by pvPortMalloc() have at least the alignment required by the MCU's stack, and the first member of Timer_t is always a pointer to the timer's mame. */
+ pxNewTimer = ( Timer_t * ) pvPortMalloc( sizeof( Timer_t ) ); /*lint !e9087 !e9079 All values returned by pvPortMalloc() have at least the alignment required by the MCU's stack, and the first member of Timer_t is always a pointer to the timer's name. */
if( pxNewTimer != NULL )
{