aboutsummaryrefslogtreecommitdiff
path: root/contrib/bmake/hash.c
diff options
context:
space:
mode:
authorSimon J. Gerraty <sjg@FreeBSD.org>2022-04-03 19:55:42 +0000
committerSimon J. Gerraty <sjg@FreeBSD.org>2022-04-03 19:58:43 +0000
commit1d3f2ddc32fc37e4835aa5a51eabc8696c1e8114 (patch)
treed0157595a7a86e65766d2d7c4bf5fd0c26d37fb5 /contrib/bmake/hash.c
parent823b5cfbabb93294c9294c1b1b2cbeb5a61af74b (diff)
parenta052cb432096794be5070dc68a2b302eaf5a4783 (diff)
Merge bmake-20220330
Merge commit 'a052cb432096794be5070dc68a2b302eaf5a4783'
Diffstat (limited to 'contrib/bmake/hash.c')
-rw-r--r--contrib/bmake/hash.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/contrib/bmake/hash.c b/contrib/bmake/hash.c
index beef2a8419de..b1796c859390 100644
--- a/contrib/bmake/hash.c
+++ b/contrib/bmake/hash.c
@@ -1,4 +1,4 @@
-/* $NetBSD: hash.c,v 1.71 2022/01/27 11:00:07 rillig Exp $ */
+/* $NetBSD: hash.c,v 1.72 2022/02/09 21:09:24 rillig Exp $ */
/*
* Copyright (c) 1988, 1989, 1990 The Regents of the University of California.
@@ -74,7 +74,7 @@
#include "make.h"
/* "@(#)hash.c 8.1 (Berkeley) 6/6/93" */
-MAKE_RCSID("$NetBSD: hash.c,v 1.71 2022/01/27 11:00:07 rillig Exp $");
+MAKE_RCSID("$NetBSD: hash.c,v 1.72 2022/02/09 21:09:24 rillig Exp $");
/*
* The ratio of # entries to # buckets at which we rebuild the table to
@@ -283,7 +283,7 @@ HashTable_Set(HashTable *t, const char *key, void *value)
HashEntry_Set(he, value);
}
-/* Delete the entry from the table and free the associated memory. */
+/* Delete the entry from the table, don't free the value of the entry. */
void
HashTable_DeleteEntry(HashTable *t, HashEntry *he)
{