From 33f33ed9fd3228b36da64a59bdb3545b58ae5534 Mon Sep 17 00:00:00 2001 From: Sam Ellicott Date: Wed, 20 May 2020 00:10:59 -0400 Subject: [PATCH] Oops, that could have been embareassing. --- colorchord2/chash.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/colorchord2/chash.c b/colorchord2/chash.c index a5e7c41..717ccf9 100644 --- a/colorchord2/chash.c +++ b/colorchord2/chash.c @@ -133,7 +133,7 @@ void ** HashTableInsert( struct chash * hash, const char * key, int dontDupKey ) } else { - thisEntry->key = _strdup( key ); + thisEntry->key = strdup( key ); } thisEntry->hash = thisHash;