mesa: Replace random with standard C rand.
authorVinson Lee <vlee@freedesktop.org>
Tue, 13 Nov 2012 06:15:42 +0000 (22:15 -0800)
committerVinson Lee <vlee@freedesktop.org>
Tue, 13 Nov 2012 06:15:42 +0000 (22:15 -0800)
BSD random is not available on some compilers.

Signed-off-by: Vinson Lee <vlee@freedesktop.org>
src/mesa/main/hash_table.c

index 1e4561e..2bd1929 100644 (file)
@@ -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;