mirror of
https://github.com/SDL-Hercules-390/hyperion.git
synced 2026-04-17 09:30:41 +02:00
Correct the signatures of created thread functions
This commit is contained in:
@@ -478,7 +478,7 @@ static void http_download(WEBBLK *webblk, char *filename)
|
||||
}
|
||||
|
||||
|
||||
static void *http_request(int sock)
|
||||
static void *http_request(void* arg)
|
||||
{
|
||||
WEBBLK *webblk;
|
||||
int authok = !http_serv.httpauth;
|
||||
@@ -488,6 +488,7 @@ static void *http_request(int sock)
|
||||
char *strtok_str = NULL;
|
||||
CGITAB *cgient;
|
||||
int content_length = 0;
|
||||
int sock = (int) arg;
|
||||
|
||||
if(!(webblk = malloc(sizeof(WEBBLK))))
|
||||
http_exit(webblk);
|
||||
|
||||
Reference in New Issue
Block a user