diff options
| author | Hung-Weic Chiu <sppsorrg@gmail.com> | 2017-04-29 15:34:18 +0000 |
|---|---|---|
| committer | Hung-Weic Chiu <sppsorrg@gmail.com> | 2017-04-29 15:35:32 +0000 |
| commit | c604467a081a332848bf486a207649d79abbe3fd (patch) | |
| tree | 21791b6458db6a4a65624f4ca763a7e72ebbbe97 /ospfd/ospf_vty.c | |
| parent | 3a6570a1f145c49155d72a815441025085dd45ad (diff) | |
Fix the "Uninitialized argument value" of clang SA.
Signed-off-by: Hung-Weic Chiu <sppsorrg@gmail.com>
Diffstat (limited to 'ospfd/ospf_vty.c')
| -rw-r--r-- | ospfd/ospf_vty.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ospfd/ospf_vty.c b/ospfd/ospf_vty.c index 38e006e928..2724df98a0 100644 --- a/ospfd/ospf_vty.c +++ b/ospfd/ospf_vty.c @@ -7059,7 +7059,7 @@ DEFUN (no_ip_ospf_dead_interval, "Address of interface") { struct interface *ifp = vty->index; - struct in_addr addr; + struct in_addr addr = { .s_addr = 0L}; int ret; struct ospf_if_params *params; struct ospf_interface *oi; |
