diff options
| author | Quentin Young <qlyoung@cumulusnetworks.com> | 2019-02-25 18:59:55 +0000 | 
|---|---|---|
| committer | Quentin Young <qlyoung@cumulusnetworks.com> | 2019-02-25 23:00:16 +0000 | 
| commit | 9f2d03544785b7f6cb08fe2d6ad6a2a491d8fb53 (patch) | |
| tree | 3f9ca6ee7c91287620e3ce27c8ef9a841fb877a6 /ospfd/ospf_ism.c | |
| parent | b08047f82d887d1ea639bbfe97147b46572099d5 (diff) | |
*: remove useless return variables
Signed-off-by: Quentin Young <qlyoung@cumulusnetworks.com>
Diffstat (limited to 'ospfd/ospf_ism.c')
| -rw-r--r-- | ospfd/ospf_ism.c | 4 | 
1 files changed, 1 insertions, 3 deletions
diff --git a/ospfd/ospf_ism.c b/ospfd/ospf_ism.c index 9fd9a70c78..419081fe59 100644 --- a/ospfd/ospf_ism.c +++ b/ospfd/ospf_ism.c @@ -380,12 +380,10 @@ static int ism_interface_up(struct ospf_interface *oi)  static int ism_loop_ind(struct ospf_interface *oi)  { -	int ret = 0; -  	/* call ism_interface_down. */  	/* ret = ism_interface_down (oi); */ -	return ret; +	return 0;  }  /* Interface down event handler. */  | 
