mirror of
https://github.com/moparisthebest/curl
synced 2024-12-21 23:58:49 -05:00
typecase getpid() to int to prevent compiler warning
This commit is contained in:
parent
ad05d0a8d9
commit
9b43ade1c0
@ -339,7 +339,7 @@ static int send_doc(int sock, int doc, int part_no)
|
||||
/* we got a "friends?" question, reply back that we sure are */
|
||||
logmsg("Identifying ourselves as friends");
|
||||
sprintf(weare, "HTTP/1.1 200 OK\r\n\r\nWE ROOLZ: %d\r\n",
|
||||
getpid());
|
||||
(int)getpid());
|
||||
buffer = weare;
|
||||
break;
|
||||
case DOCNUMBER_INTERNAL:
|
||||
|
Loading…
Reference in New Issue
Block a user