Skip to content
Snippets Groups Projects
Commit c0dd4021 authored by Michael Tüxen's avatar Michael Tüxen
Browse files

Fix compilation on 64-bit FreeBSD.

parent 4e871355
No related branches found
No related tags found
No related merge requests found
......@@ -4303,7 +4303,7 @@ static int syscall_sctp_sendx(struct state *state, struct syscall_spec *syscall,
if (ellipsis_arg(args, 1, error))
return STATUS_ERR;
len_expr = get_arg(args, 2, error);
if (get_u32(len_expr, &len, error)) {
if (get_size_t(len_expr, &len, error)) {
return STATUS_ERR;
}
addrs_expr = get_arg(args, 3, error);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment