Skip to content

Commit

Permalink
HttpClient: ここのキャスト不要。
Browse files Browse the repository at this point in the history
いくらか前から TLSHandle_*.Read() は ssize_t を返すようになっている。
  • Loading branch information
isaki68k committed Oct 15, 2023
1 parent 7bdc558 commit c01cff3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/HttpClient.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -367,5 +367,5 @@ TLSStream::~TLSStream()
ssize_t
TLSStream::Read(void *dst, size_t dstlen)
{
return (ssize_t)mtls->Read(dst, dstlen);
return mtls->Read(dst, dstlen);
}

0 comments on commit c01cff3

Please sign in to comment.