X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=test%2Fmap_test1.c;h=9d45812ad370ae8f331ec06a2ae577d6b9efac43;hb=7d658a03f83e64690d0c71b4733dd3f9a2c60208;hp=3acf4c2a43cac981110d6e46ff684bf57589f92f;hpb=2b107655a1df8ae7703b44ef8cf1430a7250a5c3;p=nbds diff --git a/test/map_test1.c b/test/map_test1.c index 3acf4c2..9d45812 100644 --- a/test/map_test1.c +++ b/test/map_test1.c @@ -23,7 +23,7 @@ static map_t *map_; void *worker (void *arg) { // Wait for all the worker threads to be ready. - SYNC_ADD(&wait_, -1); + (void)SYNC_ADD(&wait_, -1); do {} while (wait_); #ifdef TEST_STRING_KEYS @@ -85,7 +85,7 @@ int main (int argc, char **argv) { } } - static const map_impl_t *map_types[] = { &ll_map_impl, &sl_map_impl, &ht_map_impl }; + static const map_impl_t *map_types[] = { &MAP_IMPL_LL, &MAP_IMPL_SL, &MAP_IMPL_HT }; for (int i = 0; i < sizeof(map_types)/sizeof(*map_types); ++i) { #ifdef TEST_STRING_KEYS map_ = map_alloc(map_types[i], &DATATYPE_NSTRING);