mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-06 09:28:07 +02:00
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:
parent
9d704930a1
commit
7d5afb0ee9
1 changed files with 2 additions and 2 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue