diff --git a/sys/netinet/if_ether.c b/sys/netinet/if_ether.c index 495a554eba41..7fbcd9046126 100644 --- a/sys/netinet/if_ether.c +++ b/sys/netinet/if_ether.c @@ -444,7 +444,7 @@ arpintr() panic("arpintr"); if (m->m_len < sizeof(struct arphdr) && - (m = m_pullup(m, sizeof(struct arphdr)) == NULL)) { + ((m = m_pullup(m, sizeof(struct arphdr))) == NULL)) { log(LOG_ERR, "arp: runt packet -- m_pullup failed."); continue; }