From 967cc968e8d3a3f2b371b84a0b95619d4974e421 Mon Sep 17 00:00:00 2001 From: qiyongzhong0 <917768104@qq.com> Date: Fri, 18 Sep 2020 09:45:47 +0800 Subject: [PATCH] fix difference of style --- components/drivers/src/dataqueue.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/drivers/src/dataqueue.c b/components/drivers/src/dataqueue.c index 7aea0ab246..bfe8e12573 100644 --- a/components/drivers/src/dataqueue.c +++ b/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) {