Commit b7abd569 authored by Max Kellermann's avatar Max Kellermann

lib/curl/Global: use `auto`

parent 7a0957d7
......@@ -112,7 +112,7 @@ CurlSocket::SocketFunction(gcc_unused CURL *easy,
void *userp, void *socketp) noexcept
{
auto &global = *(CurlGlobal *)userp;
CurlSocket *cs = (CurlSocket *)socketp;
auto *cs = (CurlSocket *)socketp;
assert(global.GetEventLoop().IsInside());
......
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