From 112e58e371cb24d0d48b41ab332224b5e866ea0e Mon Sep 17 00:00:00 2001 From: Tim Edwards Date: Fri, 29 May 2020 16:36:07 -0400 Subject: [PATCH] And one more hash key type needed to be changed in the other call to HashInit(). --- lef/lefWrite.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lef/lefWrite.c b/lef/lefWrite.c index 68103644..349bc221 100644 --- a/lef/lefWrite.c +++ b/lef/lefWrite.c @@ -1746,7 +1746,7 @@ LefWriteCell(def, outName, isRoot, lefTech, lefHide) { HashTable propHashTbl; - HashInit(&propHashTbl, 4, HT_WORDKEYS); + HashInit(&propHashTbl, 4, HT_STRINGKEYS); lefGetProperties((ClientData)def, 0, (ClientData)&propHashTbl); lefWriteHeader(def, f, lefTech, &propHashTbl); HashKill(&propHashTbl);