Fixes missing error prong in std.os.send.

This commit is contained in:
Felix (xq) Queißner 2021-01-04 12:20:43 +01:00 committed by Andrew Kelley
parent fc3508b7e8
commit 819f2a01a1

View File

@ -4853,6 +4853,7 @@ pub fn send(
error.NotDir => unreachable,
error.NetworkUnreachable => unreachable,
error.AddressNotAvailable => unreachable,
error.SocketNotConnected => unreachable,
else => |e| return e,
};
}