From c0baf6643e82c2fc81552da7d78ca2bd6ea90bc4 Mon Sep 17 00:00:00 2001 From: gonghui Date: Fri, 4 Jun 2021 11:19:51 +0800 Subject: [PATCH] fix issue --- core/host/include/hdf_device_token.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/host/include/hdf_device_token.h b/core/host/include/hdf_device_token.h index 2f4f24c9e..a6df05b22 100644 --- a/core/host/include/hdf_device_token.h +++ b/core/host/include/hdf_device_token.h @@ -13,8 +13,8 @@ #include "hdf_slist.h" struct HdfDeviceToken { - struct HdfSListNode node; struct IHdfDeviceToken super; + struct HdfSListNode node; }; struct HdfObject *HdfDeviceTokenCreate(void); -- Gitee