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 /pathd | |
| parent | 75eeda93231620d732be3b1d4e62e74e9ac46e14 (diff) | |
*: Remove redundand braces for single statement blocks
Signed-off-by: Donatas Abraitis <donatas.abraitis@gmail.com>
Diffstat (limited to 'pathd')
| -rw-r--r-- | pathd/path_ted.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/pathd/path_ted.c b/pathd/path_ted.c index 52011402de..6bfca50450 100644 --- a/pathd/path_ted.c +++ b/pathd/path_ted.c @@ -471,9 +471,8 @@ DEFPY (show_pahtd_ted_db, } /* Show the complete TED */ ls_show_ted(ted_state_g.ted, vty, json, !st_json); - if (st_json) { + if (st_json) vty_json(vty, json); - } return CMD_SUCCESS; } |
