Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
C
capnproto
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
capnproto
Commits
5df0f163
Unverified
Commit
5df0f163
authored
Apr 18, 2018
by
Kenton Varda
Committed by
GitHub
Apr 18, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixup: size_t and uint64_t are not the same on 32-bit archs
parent
2c57e5cb
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
async-io.c++
c++/src/kj/async-io.c++
+1
-1
No files found.
c++/src/kj/async-io.c++
View file @
5df0f163
...
...
@@ -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
;
});
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment