From 14ae798fbdc2830498f6e528fa52bfb83bb255d8 Mon Sep 17 00:00:00 2001 From: Hongze Cheng Date: Tue, 14 Dec 2021 10:50:16 +0800 Subject: [PATCH] more --- include/util/tdlist.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/util/tdlist.h b/include/util/tdlist.h index a19f3bebec..d047a57770 100644 --- a/include/util/tdlist.h +++ b/include/util/tdlist.h @@ -58,8 +58,8 @@ extern "C" { // Double linked list #define TD_DLIST_NODE(TYPE) \ struct { \ - TYPE *dl_prev_; \ - TYPE *dl_next_; \ + struct TYPE *dl_prev_; \ + struct TYPE *dl_next_; \ } #define TD_DLIST(TYPE) \