diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2015-10-24 19:15:44 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2015-10-24 19:15:44 +0200 |
commit | 334e12ac6a5c26a83e45e32436449730877de49a (patch) | |
tree | 7f3e7906e16fe29b5b12c8634e7ceee044d577c7 /networking/zcip.c | |
parent | 49d51598ac1db5e07a496a3014545f5daab8c501 (diff) |
zcip: ...ad suppress the warning
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking/zcip.c')
-rw-r--r-- | networking/zcip.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/zcip.c b/networking/zcip.c index f0e734283..1d6910555 100644 --- a/networking/zcip.c +++ b/networking/zcip.c @@ -345,7 +345,7 @@ int zcip_main(int argc UNUSED_PARAM, char **argv) state = PROBE; while (1) { struct pollfd fds[1]; - unsigned deadline_us; + unsigned deadline_us = deadline_us; struct arp_packet p; int ip_conflict; int n; |