From bb284669f85a32900bfec648d68ba4c4300772f4 Mon Sep 17 00:00:00 2001 From: Vinson Lee Date: Mon, 12 Nov 2012 22:15:42 -0800 Subject: [PATCH] mesa: Replace random with standard C rand. BSD random is not available on some compilers. Signed-off-by: Vinson Lee --- src/mesa/main/hash_table.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mesa/main/hash_table.c b/src/mesa/main/hash_table.c index 1e4561e6caf..2bd1929aa9d 100644 --- a/src/mesa/main/hash_table.c +++ b/src/mesa/main/hash_table.c @@ -363,7 +363,7 @@ _mesa_hash_table_random_entry(struct hash_table *ht, bool (*predicate)(struct hash_entry *entry)) { struct hash_entry *entry; - uint32_t i = random() % ht->size; + uint32_t i = rand() % ht->size; if (ht->entries == 0) return NULL; -- 2.30.2