mirror of
				https://github.com/FreeRTOS/FreeRTOS-Kernel.git
				synced 2025-11-04 02:59:01 +01:00 
			
		
		
		
	Add missing cast to BaseType_t (#1301)
Signed-off-by: Gaurav Aggarwal <aggarg@amazon.com>
This commit is contained in:
		
							parent
							
								
									32e581636f
								
							
						
					
					
						commit
						2da35debfd
					
				
							
								
								
									
										2
									
								
								tasks.c
									
									
									
									
									
								
							
							
						
						
									
										2
									
								
								tasks.c
									
									
									
									
									
								
							@ -893,7 +893,7 @@ static void prvAddNewTaskToReadyList( TCB_t * pxNewTCB ) PRIVILEGED_FUNCTION;
 | 
				
			|||||||
        BaseType_t xCurrentCoreTaskPriority;
 | 
					        BaseType_t xCurrentCoreTaskPriority;
 | 
				
			||||||
        BaseType_t xLowestPriorityCore = ( BaseType_t ) -1;
 | 
					        BaseType_t xLowestPriorityCore = ( BaseType_t ) -1;
 | 
				
			||||||
        BaseType_t xCoreID;
 | 
					        BaseType_t xCoreID;
 | 
				
			||||||
        const BaseType_t xCurrentCoreID = portGET_CORE_ID();
 | 
					        const BaseType_t xCurrentCoreID = ( BaseType_t ) portGET_CORE_ID();
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        #if ( configRUN_MULTIPLE_PRIORITIES == 0 )
 | 
					        #if ( configRUN_MULTIPLE_PRIORITIES == 0 )
 | 
				
			||||||
            BaseType_t xYieldCount = 0;
 | 
					            BaseType_t xYieldCount = 0;
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user