diff options
| author | Donatas Abraitis <donatas.abraitis@gmail.com> | 2021-11-26 00:02:37 +0200 | 
|---|---|---|
| committer | Donatas Abraitis <donatas.abraitis@gmail.com> | 2021-11-27 11:20:59 +0200 | 
| commit | c48349e346571d307b48ca594f6edd096be7ccfd (patch) | |
| tree | 3d465f92432dedb0f4496d4682228d36f29b2db9 /sharpd | |
| parent | 75eeda93231620d732be3b1d4e62e74e9ac46e14 (diff) | |
*: Remove redundand braces for single statement blocks
Signed-off-by: Donatas Abraitis <donatas.abraitis@gmail.com>
Diffstat (limited to 'sharpd')
| -rw-r--r-- | sharpd/sharp_vty.c | 3 | 
1 files changed, 1 insertions, 2 deletions
diff --git a/sharpd/sharp_vty.c b/sharpd/sharp_vty.c index 3485d172bc..0a323f744e 100644 --- a/sharpd/sharp_vty.c +++ b/sharpd/sharp_vty.c @@ -1065,9 +1065,8 @@ DEFUN (show_sharp_ted,  		ls_show_ted(sg.ted, vty, json, verbose);  	} -	if (uj) { +	if (uj)  		vty_json(vty, json); -	}  	return CMD_SUCCESS;  }  | 
