Commit 15523d66 authored by Xavier Deguillard's avatar Xavier Deguillard Committed by Facebook GitHub Bot

io: fix signed comparison warning

Summary: This shows up when compiling with mode/win.

Reviewed By: yfeldblum

Differential Revision: D23871729

fbshipit-source-id: 1d52f41f425cd542bae1ac2c3bfe9893fffefdf4
parent 92fe7260
......@@ -175,7 +175,7 @@ class AsyncSSLSocket : public AsyncSocket {
}
void readDataAvailable(size_t len) noexcept override {
CHECK_EQ(len, 1);
CHECK_EQ(len, 1u);
sslSocket_->restartSSLAccept();
pipeReader_->setReadCB(nullptr);
sslSocket_->setAsyncOperationFinishCallback(nullptr);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment