diff options
author | Marek Olšák <[email protected]> | 2020-02-05 14:47:36 -0500 |
---|---|---|
committer | Marge Bot <[email protected]> | 2020-02-26 20:35:50 +0000 |
commit | 502840855acac744fbc8dd090d931adc07755ead (patch) | |
tree | 344d4a18125d8ff985fd625e20e6958423ee62af /src/gallium/auxiliary/util/u_debug_refcnt.c | |
parent | 10d235a84319ed4137fe0c6d22d8bb9a52d3174a (diff) |
gallium/hash_table: turn it into a wrapper around util/hash_table
Reviewed-by: Kristian H. Kristensen <[email protected]>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/3722>
Diffstat (limited to 'src/gallium/auxiliary/util/u_debug_refcnt.c')
-rw-r--r-- | src/gallium/auxiliary/util/u_debug_refcnt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/util/u_debug_refcnt.c b/src/gallium/auxiliary/util/u_debug_refcnt.c index c1560fb7dc0..a4612a40f66 100644 --- a/src/gallium/auxiliary/util/u_debug_refcnt.c +++ b/src/gallium/auxiliary/util/u_debug_refcnt.c @@ -54,7 +54,7 @@ static FILE *stream; */ static mtx_t serials_mutex = _MTX_INITIALIZER_NP; -static struct util_hash_table *serials_hash; +static struct hash_table *serials_hash; static unsigned serials_last; |