Refactor: Use pthread_exit(nullptr) instead of pthread_exit(NULL) for type safety.

This commit is contained in:
gberkes 2024-02-27 19:21:58 +00:00
parent bf6042dd16
commit 64dfe41cec

View File

@ -102,7 +102,7 @@ struct data_ms {
delete modsecTransaction;
}
pthread_exit(NULL);
pthread_exit(nullptr);
}