Skip to content

Commit 84ec6cc

Browse files
Julian PichtJulian Picht
authored andcommitted
FIX: src/webserver.cpp pthread_kill call
1 parent 517e4c1 commit 84ec6cc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/webserver.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -586,7 +586,7 @@ bool webserver::start(bool blocking)
586586
} catch (::httpserver::webserver_exception &e) {
587587
this->running = false;
588588
for (;i >= 0; --i) {
589-
pthread_kill(&threads[i], 9);
589+
pthread_kill(threads[i], 9);
590590
}
591591
threads.clear();
592592
throw e;

0 commit comments

Comments
 (0)