summaryrefslogtreecommitdiffstats
path: root/usr.sbin/ngctl/debug.c
diff options
context:
space:
mode:
Diffstat (limited to 'usr.sbin/ngctl/debug.c')
-rw-r--r--usr.sbin/ngctl/debug.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/ngctl/debug.c b/usr.sbin/ngctl/debug.c
index 4fa074d..491bfb4 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);
}
OpenPOWER on IntegriCloud