diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2022-01-01 13:53:31 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2022-01-01 18:05:00 +0100 |
commit | a8d51bf0ce26fd26e00338540857f43b8a99e126 (patch) | |
tree | 917f249fbf6873280161959c74a71b8edb0f4cea /eth-multiplexer | |
parent | e2b75a67395fbbdd36bb0bceaea2465a2a1fa172 (diff) | |
download | hurd-a8d51bf0ce26fd26e00338540857f43b8a99e126.tar.gz hurd-a8d51bf0ce26fd26e00338540857f43b8a99e126.tar.bz2 hurd-a8d51bf0ce26fd26e00338540857f43b8a99e126.zip |
Fix build warnings
No actual behavior change.
Diffstat (limited to 'eth-multiplexer')
-rw-r--r-- | eth-multiplexer/ethernet.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/eth-multiplexer/ethernet.c b/eth-multiplexer/ethernet.c index c8849aa1..e45a4b94 100644 --- a/eth-multiplexer/ethernet.c +++ b/eth-multiplexer/ethernet.c @@ -59,7 +59,7 @@ static struct bpf_insn ether_filter[] = {6, 0, 0, 1500}, {6, 0, 0, 0} }; -static int ether_filter_len = sizeof (ether_filter) / sizeof (short); +static int ether_filter_len = sizeof (ether_filter) / (sizeof (short)); int ethernet_demuxer (mach_msg_header_t *inp, mach_msg_header_t *outp) |