qiyongzhong0 5 лет назад
Родитель
Сommit
967cc968e8
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      components/drivers/src/dataqueue.c

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

@@ -43,7 +43,7 @@ rt_data_queue_init(struct rt_data_queue *queue,
 
     rt_list_init(&(queue->suspended_push_list));
     rt_list_init(&(queue->suspended_pop_list));
-    
+
     queue->queue = (struct rt_data_item *)rt_malloc(sizeof(struct rt_data_item) * size);
     if (queue->queue == RT_NULL)
     {