Skip to content

Commit

Permalink
Refactor: Use pthread_exit(nullptr) instead of pthread_exit(NULL) for…
Browse files Browse the repository at this point in the history
… type safety.
  • Loading branch information
gberkes committed Feb 27, 2024
1 parent bf6042d commit 64dfe41
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ struct data_ms {
delete modsecTransaction;
}

pthread_exit(NULL);
pthread_exit(nullptr);
}


Expand Down

0 comments on commit 64dfe41

Please sign in to comment.