diff options
author | Peter Maydell <peter.maydell@linaro.org> | 2014-05-29 11:59:26 +0100 |
---|---|---|
committer | Michael Tokarev <mjt@tls.msk.ru> | 2014-06-10 19:39:34 +0400 |
commit | 49bba868df17aebf7525a5c8f21c451abe3dcdc8 (patch) | |
tree | 8eed625023998818c9bfa3ce2830b2e711144855 /slirp | |
parent | 2a802aaf635e9700942a04f698bce9e476c207e2 (diff) |
slirp: Remove unused zero_ethaddr[] variable
The zero_ethaddr[] array is never used; delete it.
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
Diffstat (limited to 'slirp')
-rw-r--r-- | slirp/slirp.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/slirp/slirp.c b/slirp/slirp.c index 60280361e6..35f819afb7 100644 --- a/slirp/slirp.c +++ b/slirp/slirp.c @@ -37,8 +37,6 @@ static const uint8_t special_ethaddr[ETH_ALEN] = { 0x52, 0x55, 0x00, 0x00, 0x00, 0x00 }; -static const uint8_t zero_ethaddr[ETH_ALEN] = { 0, 0, 0, 0, 0, 0 }; - u_int curtime; static QTAILQ_HEAD(slirp_instances, Slirp) slirp_instances = |