Skip to content

Commit

Permalink
fix compile error
Browse files Browse the repository at this point in the history
  • Loading branch information
LeonidGoltsblat committed Jan 26, 2025
1 parent 29201a8 commit eec77e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pjlib/src/pj/os_core_unix.c
Original file line number Diff line number Diff line change
Expand Up @@ -2150,7 +2150,7 @@ pj_status_t pj_barrier_destroy(pj_barrier_t *barrier) {
pj_status_t pj_barrier_create(pj_pool_t *pool, unsigned trip_count, pj_barrier_t **p_barrier) {
pj_barrier_t *barrier;
int rc;
pj_status_t
pj_status_t status;

PJ_ASSERT_RETURN(pool && p_barrier, PJ_EINVAL);
barrier = (pj_barrier_t *)pj_pool_zalloc(pool, sizeof(pj_barrier_t));
Expand Down

0 comments on commit eec77e5

Please sign in to comment.