diff options
| author | Donatas Abraitis <donatas.abraitis@gmail.com> | 2020-02-09 14:21:56 +0200 | 
|---|---|---|
| committer | Donatas Abraitis <donatas.abraitis@gmail.com> | 2020-02-09 14:21:56 +0200 | 
| commit | 95f7965d09a6eb4447c0de5a679114492cac3f37 (patch) | |
| tree | 1bfa78792b4f62934a483104e921f0bff5809590 /vtysh/vtysh_main.c | |
| parent | 5f1032f291b8581d44570047f2d063bb6daea983 (diff) | |
*: Remove parenthesis on return for constants
Signed-off-by: Donatas Abraitis <donatas.abraitis@gmail.com>
Diffstat (limited to 'vtysh/vtysh_main.c')
| -rw-r--r-- | vtysh/vtysh_main.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/vtysh/vtysh_main.c b/vtysh/vtysh_main.c index 0ba1b9d9c8..5951274257 100644 --- a/vtysh/vtysh_main.c +++ b/vtysh/vtysh_main.c @@ -470,7 +470,7 @@ int main(int argc, char **argv, char **env)  		if (!inputfile) {  			fprintf(stderr,  				"-f option MUST be specified with -m option\n"); -			return (1); +			return 1;  		}  		return (vtysh_mark_file(inputfile));  	}  | 
