From a1f675c8d1214ef386e4139bed3bcb61007eb2c2 Mon Sep 17 00:00:00 2001 From: Jeff Tao Date: Sun, 5 Apr 2020 20:03:18 +0800 Subject: [PATCH] rename a structure to remove the duplication --- src/dnode/src/dnodeWrite.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dnode/src/dnodeWrite.c b/src/dnode/src/dnodeWrite.c index 2348cf62a4..aee14ed484 100644 --- a/src/dnode/src/dnodeWrite.c +++ b/src/dnode/src/dnodeWrite.c @@ -40,7 +40,7 @@ typedef struct { SRpcMsg rpcMsg; } SWriteMsg; -typedef struct _thread_obj { +typedef struct _wworker_pool { int32_t max; // max number of workers int32_t nextId; // from 0 to max-1, cyclic SWriteWorker *writeWorker;