diff --git a/src/libs/compat/openbsd_network/compat/net/if_var.h b/src/libs/compat/openbsd_network/compat/net/if_var.h index c5a7b895b3..6e138d26b3 100644 --- a/src/libs/compat/openbsd_network/compat/net/if_var.h +++ b/src/libs/compat/openbsd_network/compat/net/if_var.h @@ -20,7 +20,7 @@ if_input_openbsd(if_t ifp, struct mbuf_list* ml) while (mb != NULL) { // if_input takes only the first packet, it ignores mb->m_nextpkt. next = mb->m_nextpkt; - int status = if_input(ifp, mb); + status = if_input(ifp, mb); if (status != 0) break;