Skip to content

Commit

Permalink
list_traced_function_stacks(): typo g_mutex_unlock() -> g_mutex_lock()
Browse files Browse the repository at this point in the history
  • Loading branch information
rockowitz committed Jan 29, 2025
1 parent cd3f81a commit 56772f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/util/traced_function_stack.c
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ typedef struct {


static void list_traced_function_stacks() {
g_mutex_unlock(&all_traced_function_stacks_mutex);
g_mutex_lock(&all_traced_function_stacks_mutex);
if (!all_traced_function_stacks) {
printf("No traced function stacks found.\n");
}
Expand Down

0 comments on commit 56772f7

Please sign in to comment.