diff --git a/flecs.c b/flecs.c index 9e446d038..217c8510a 100644 --- a/flecs.c +++ b/flecs.c @@ -11416,7 +11416,7 @@ ecs_page_t* flecs_sparse_get_page( if (page_index >= ecs_vec_count(&sparse->pages)) { return NULL; } - return ecs_vec_get_t(&sparse->pages, ecs_page_t, page_index);; + return ecs_vec_get_t(&sparse->pages, ecs_page_t, page_index); } static @@ -17816,7 +17816,7 @@ void flecs_run_pipeline( ecs_assert(!stage_index, ECS_INVALID_OPERATION, NULL); - bool multi_threaded = ecs_get_stage_count(world) > 1;; + bool multi_threaded = ecs_get_stage_count(world) > 1; // Update the pipeline the workers will execute world->pq = pq; diff --git a/src/addons/pipeline/pipeline.c b/src/addons/pipeline/pipeline.c index 954ed1309..96ecaa733 100644 --- a/src/addons/pipeline/pipeline.c +++ b/src/addons/pipeline/pipeline.c @@ -590,7 +590,7 @@ void flecs_run_pipeline( ecs_assert(!stage_index, ECS_INVALID_OPERATION, NULL); - bool multi_threaded = ecs_get_stage_count(world) > 1;; + bool multi_threaded = ecs_get_stage_count(world) > 1; // Update the pipeline the workers will execute world->pq = pq; diff --git a/src/datastructures/sparse.c b/src/datastructures/sparse.c index 843403f90..2c829f06b 100644 --- a/src/datastructures/sparse.c +++ b/src/datastructures/sparse.c @@ -92,7 +92,7 @@ ecs_page_t* flecs_sparse_get_page( if (page_index >= ecs_vec_count(&sparse->pages)) { return NULL; } - return ecs_vec_get_t(&sparse->pages, ecs_page_t, page_index);; + return ecs_vec_get_t(&sparse->pages, ecs_page_t, page_index); } static