Fix CAA_BITS_PER_lONG typo
[urcu.git] / rculfhash.c
index da37e97d38554c6def88699590be83439385e82f..ebefa92ad8460c0d49501b67261b9087832167e0 100644 (file)
@@ -454,7 +454,7 @@ unsigned int fls_u32(uint32_t x)
 
 unsigned int fls_ulong(unsigned long x)
 {
-#if (CAA_BITS_PER_lONG == 32)
+#if (CAA_BITS_PER_LONG == 32)
        return fls_u32(x);
 #else
        return fls_u64(x);
@@ -1348,10 +1348,10 @@ struct cds_lfht *_cds_lfht_new(cds_lfht_hash_fct hash_fct,
        pthread_mutex_init(&ht->resize_mutex, NULL);
        order = get_count_order_ulong(init_size);
        ht->t.resize_target = 1UL << order;
-       cds_lfht_create_dummy(ht, 1UL << order);
-       ht->t.size = 1UL << order;
        ht->min_alloc_size = min_alloc_size;
        ht->min_alloc_order = get_count_order_ulong(min_alloc_size);
+       cds_lfht_create_dummy(ht, 1UL << order);
+       ht->t.size = 1UL << order;
        return ht;
 }
 
This page took 0.022446 seconds and 4 git commands to generate.