mirror of
https://github.com/curl/curl.git
synced 2026-06-04 08:54:17 +03:00
typecase getpid() to int to prevent compiler warning
This commit is contained in:
parent
ad05d0a8d9
commit
9b43ade1c0
1 changed files with 1 additions and 1 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue