Commit f892ec2a by Edward Thomson

socket: mark flags as unused

parent bf2f44d6
......@@ -135,7 +135,8 @@ static ssize_t socket_write(git_stream *stream, const char *data, size_t len, in
git_socket_stream *st = (git_socket_stream *) stream;
ssize_t written;
assert(flags == 0);
GIT_ASSERT(flags == 0);
GIT_UNUSED(flags);
errno = 0;
......
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