Change type of function pointer #66
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
The return types of
read(2)
andwrite(2)
are actuallyssize_t
and notint
.This causes a compilation error on clang, but just a warning on gcc.
I can't create a pull request so here's a diff:
I should just drop the function pointer magic and use an
if
- working around type differences there (on which this is further elaborated in the surrounding comments) has caused me enough grief as-is.On a side note - you can't create a pull request? Is this issue on your end or ours?
Could you test the pull request and confirm it builds?