Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/usr.bin/make make: fix build for DEBUG_HASH_LOOKUP



details:   https://anonhg.NetBSD.org/src/rev/2f410d57af64
branches:  trunk
changeset: 985888:2f410d57af64
user:      rillig <rillig%NetBSD.org@localhost>
date:      Sun Sep 12 08:36:14 2021 +0000

description:
make: fix build for DEBUG_HASH_LOOKUP

diffstat:

 usr.bin/make/hash.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r 63119ff6045f -r 2f410d57af64 usr.bin/make/hash.c
--- a/usr.bin/make/hash.c       Sun Sep 12 08:32:23 2021 +0000
+++ b/usr.bin/make/hash.c       Sun Sep 12 08:36:14 2021 +0000
@@ -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 @@
        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
 



Home | Main Index | Thread Index | Old Index