Skip to content

Commit b2ef873

Browse files
committed
add missing comma
1 parent fb89b16 commit b2ef873

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

distr/flecs.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2790,7 +2790,7 @@ void flecs_enqueue(
27902790
if (column_index > 0) {\
27912791
ecs_column_t *column = &table->data.columns[--column_index];\
27922792
return (ecs_get_ptr_t){\
2793-
.ptr = ECS_ELEM(column->data, column->ti->size, ECS_RECORD_TO_ROW(r->row))\
2793+
.ptr = ECS_ELEM(column->data, column->ti->size, ECS_RECORD_TO_ROW(r->row)),\
27942794
FLECS_LOCK_TARGET_INIT(NULL, table, column_index)\
27952795
};\
27962796
}

src/entity.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
if (column_index > 0) {\
2020
ecs_column_t *column = &table->data.columns[--column_index];\
2121
return (ecs_get_ptr_t){\
22-
.ptr = ECS_ELEM(column->data, column->ti->size, ECS_RECORD_TO_ROW(r->row))\
22+
.ptr = ECS_ELEM(column->data, column->ti->size, ECS_RECORD_TO_ROW(r->row)),\
2323
FLECS_LOCK_TARGET_INIT(NULL, table, column_index)\
2424
};\
2525
}

0 commit comments

Comments
 (0)