diff options
| author | Gleb Smirnoff <glebius@FreeBSD.org> | 2006-06-28 10:38:38 +0000 |
|---|---|---|
| committer | Gleb Smirnoff <glebius@FreeBSD.org> | 2006-06-28 10:38:38 +0000 |
| commit | 9caee2ece77615135bbc2531d21b62e81aed5cb5 (patch) | |
| tree | 16ce781a472dce81e91d090c2bbbc51ec55cb152 /usr.sbin/ngctl/debug.c | |
| parent | fe0e43d648385f9004df9fffb9f53966dc671710 (diff) | |
Notes
Diffstat (limited to 'usr.sbin/ngctl/debug.c')
| -rw-r--r-- | usr.sbin/ngctl/debug.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/ngctl/debug.c b/usr.sbin/ngctl/debug.c index 4fa074d96044..491bfb41378d 100644 --- a/usr.sbin/ngctl/debug.c +++ b/usr.sbin/ngctl/debug.c @@ -70,15 +70,15 @@ DebugCmd(int ac, char **av) else if (!strcmp(av[1], "-")) level = NgSetDebug(-1) - 1; else if ((level = atoi(av[1])) < 0) - return(CMDRTN_USAGE); + return (CMDRTN_USAGE); NgSetDebug(level); break; case 1: printf("Current debug level is %d\n", NgSetDebug(-1)); break; default: - return(CMDRTN_USAGE); + return (CMDRTN_USAGE); } - return(CMDRTN_OK); + return (CMDRTN_OK); } |
