Added spaces between comma and function parameter

This commit is contained in:
anschrammh 2022-12-15 08:20:44 +01:00
parent 4667ece5c8
commit cc108584c2

View File

@ -22,7 +22,7 @@ void user_task_main(void *param)
{
/* Creating the gfx task */
if(tls_os_task_create(&gfx_task_handle,"gfx_task",&(gfx_task), NULL, gfx_task_stack, GFX_STACK_SIZE_IN_BYTES, GFX_STACK_PRIORITY, 0 /*not used anyway*/) != TLS_OS_SUCCESS)
if(tls_os_task_create(&gfx_task_handle, "gfx_task", &(gfx_task), NULL, gfx_task_stack, GFX_STACK_SIZE_IN_BYTES, GFX_STACK_PRIORITY, 0 /*not used anyway*/) != TLS_OS_SUCCESS)
{
APP_LOG_ERROR("Failed to create GFX_TASK !");
}