Module Name: src
Committed By: rillig
Date: Sun Sep 12 08:36:15 UTC 2021
Modified Files:
src/usr.bin/make: hash.c
Log Message:
make: fix build for DEBUG_HASH_LOOKUP
To generate a diff of this commit:
cvs rdiff -u -r1.64 -r1.65 src/usr.bin/make/hash.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/usr.bin/make/hash.c
diff -u src/usr.bin/make/hash.c:1.64 src/usr.bin/make/hash.c:1.65
--- src/usr.bin/make/hash.c:1.64 Sun Apr 11 12:46:54 2021
+++ src/usr.bin/make/hash.c Sun Sep 12 08:36:14 2021
@@ -1,4 +1,4 @@
-/* $NetBSD: hash.c,v 1.64 2021/04/11 12:46:54 rillig Exp $ */
+/* $NetBSD: hash.c,v 1.65 2021/09/12 08:36:14 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.64 2021/04/11 12:46:54 rillig Exp $");
+MAKE_RCSID("$NetBSD: hash.c,v 1.65 2021/09/12 08:36:14 rillig Exp $");
/*
* The ratio of # entries to # buckets at which we rebuild the table to
@@ -152,7 +152,7 @@ HashTable_FindEntryBySubstring(HashTable
unsigned int chainlen = 0;
#ifdef DEBUG_HASH_LOOKUP
- DEBUG4(HASH, "%s: %p h=%08x key=%.*s\n", __func__, t, h,
+ DEBUG5(HASH, "%s: %p h=%08x key=%.*s\n", __func__, t, h,
(int)Substring_Length(key), key.start);
#endif