Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/threadpool-atomics.h
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ static inline int32_t pthreadpool_fetch_add_sequentially_consistent_int32_t(
return atomic_fetch_add_explicit(address, value, memory_order_seq_cst);
}

static inline int32_t pthreadpool_fetch_add_sequentially_consistent_uint32_t(
static inline uint32_t pthreadpool_fetch_add_sequentially_consistent_uint32_t(
pthreadpool_atomic_uint32_t* address, uint32_t value) {
return atomic_fetch_add_explicit(address, value, memory_order_seq_cst);
}
Expand Down
Loading