Skip to content

Commit

Permalink
Some decent refactor tools for msvc would be very welcome.
Browse files Browse the repository at this point in the history
  • Loading branch information
JonathanHenson committed Nov 3, 2023
1 parent 70aa6e0 commit b5020b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/windows/cross_process_lock.c
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ struct aws_cross_process_lock *aws_cross_process_lock_try_acquire(
return instance_lock;
}

void aws_ipc_util_instance_lock_release(struct aws_cross_process_lock *instance_lock) {
void aws_cross_process_lock_release(struct aws_cross_process_lock *instance_lock) {
if (instance_lock) {
CloseHandle(instance_lock->mutex);
AWS_LOGF_TRACE(AWS_LS_COMMON_GENERAL, "static: Lock released for handle %p", (void *)instance_lock->mutex);
Expand Down

0 comments on commit b5020b9

Please sign in to comment.