浏览代码

fix difference of style

qiyongzhong0 5 年之前
父节点
当前提交
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)
     {