util: fix (amusing) find-n-replace fail

Signed-off-by: Alyssa Rosenzweig <alyssa.rosenzweig@intel.com>
Reviewed-by: Mel Henning <mhenning@darkrefraction.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/38955>
This commit is contained in:
Alyssa Rosenzweig 2025-12-15 14:47:37 -05:00 committed by Marge Bot
parent 9d704930a1
commit 7d5afb0ee9

View file

@ -261,7 +261,7 @@ __bitset_set_range(BITSET_WORD *r, int start, int end)
__bitset_set_range(x, b, e)
static inline void
__bitclear_clear_range(BITSET_WORD *r, int start, int end)
__bitset_clear_range(BITSET_WORD *r, int start, int end)
{
while (start <= end) {
unsigned start_mod = start % BITSET_WORDBITS;
@ -273,7 +273,7 @@ __bitclear_clear_range(BITSET_WORD *r, int start, int end)
}
#define BITSET_CLEAR_RANGE(x, b, e) \
__bitclear_clear_range(x, b, e)
__bitset_clear_range(x, b, e)
static inline unsigned
__bitset_extract(const BITSET_WORD *r, unsigned start, unsigned count)