Explorar el Código

workqueue: fix the windows eol

Grissiom hace 10 años
padre
commit
be0c0481e9
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      components/drivers/src/workqueue.c

+ 1 - 1
components/drivers/src/workqueue.c

@@ -33,7 +33,7 @@ static void _workqueue_thread_entry(void* parameter)
 struct rt_workqueue *rt_workqueue_create(const char* name, rt_uint16_t stack_size, rt_uint8_t priority)
 {
 	struct rt_workqueue *queue = RT_NULL;
-
+
 	queue = (struct rt_workqueue*)RT_KERNEL_MALLOC(sizeof(struct rt_workqueue));
 	if (queue != RT_NULL)
 	{