From 97cff30cea817b3aac2d737cabd207d16a87924f Mon Sep 17 00:00:00 2001 From: Matthew Fernandez Date: Wed, 21 Apr 2021 19:10:31 -0700 Subject: [PATCH] remove useless cast --- tclpkg/tclhandle/tclhandle.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tclpkg/tclhandle/tclhandle.c b/tclpkg/tclhandle/tclhandle.c index 4210b19db..8e9866592 100644 --- a/tclpkg/tclhandle/tclhandle.c +++ b/tclpkg/tclhandle/tclhandle.c @@ -123,7 +123,7 @@ static void tclhandleExpandTable(tblHeader_pt tblHdrPtr, uint64_t neededIdx) entryHeader_pt tclhandleAlloc(tblHeader_pt headerPtr, char *handle, uint64_t *entryIdxPtr) { - tblHeader_pt tblHdrPtr = (tblHeader_pt) headerPtr; + tblHeader_pt tblHdrPtr = headerPtr; entryHeader_pt entryPtr; uint64_t entryIdx; -- 2.40.0