X-Git-Url: https://git.sesse.net/?p=cubemap;a=blobdiff_plain;f=accesslog.cpp;h=7dfadff5bbd5923a0ef74ac1566b32c506a80f3c;hp=a0467b1572603c17ea74ea2839e5408f7bdf13f5;hb=eb0dea72c24b4791f73fdf04a19a0fb47a29926a;hpb=f67fda5486a09098c75691c1ac1fcdc033903f59 diff --git a/accesslog.cpp b/accesslog.cpp index a0467b1..7dfadff 100644 --- a/accesslog.cpp +++ b/accesslog.cpp @@ -16,12 +16,12 @@ using namespace std; AccessLogThread::AccessLogThread() { - pthread_mutex_init(&mutex); + pthread_mutex_init(&mutex, NULL); } AccessLogThread::AccessLogThread(const string &filename) : filename(filename) { - pthread_mutex_init(&mutex); + pthread_mutex_init(&mutex, NULL); } void AccessLogThread::write(const ClientStats& client)