Unverified Commit 5df0f163 authored by Kenton Varda's avatar Kenton Varda Committed by GitHub

fixup: size_t and uint64_t are not the same on 32-bit archs

parent 2c57e5cb
......@@ -689,7 +689,7 @@ private:
if (actual < amount) {
// We din't complete pumping. Restart from the pipe.
return input.pumpTo(pipe, amount - actual)
.then([actual](size_t actual2) { return actual + actual2; });
.then([actual](uint64_t actual2) { return actual + actual2; });
}
}
......
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