make: simplify expression in iteration over hash tables

This commit is contained in:
rillig 2024-05-31 07:11:12 +00:00
parent 2864ddb2e9
commit 72b6692e9f
1 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: hash.c,v 1.76 2024/05/31 05:50:11 rillig Exp $ */ /* $NetBSD: hash.c,v 1.77 2024/05/31 07:11:12 rillig Exp $ */
/* /*
* Copyright (c) 1988, 1989, 1990 The Regents of the University of California. * Copyright (c) 1988, 1989, 1990 The Regents of the University of California.
@ -74,7 +74,7 @@
#include "make.h" #include "make.h"
/* "@(#)hash.c 8.1 (Berkeley) 6/6/93" */ /* "@(#)hash.c 8.1 (Berkeley) 6/6/93" */
MAKE_RCSID("$NetBSD: hash.c,v 1.76 2024/05/31 05:50:11 rillig Exp $"); MAKE_RCSID("$NetBSD: hash.c,v 1.77 2024/05/31 07:11:12 rillig Exp $");
/* /*
* The ratio of # entries to # buckets at which we rebuild the table to * The ratio of # entries to # buckets at which we rebuild the table to
@ -317,7 +317,7 @@ HashIter_Next(HashIter *hi)
he = buckets[hi->nextBucket++]; he = buckets[hi->nextBucket++];
} }
hi->entry = he; hi->entry = he;
return he != NULL; return true;
} }
void void