diff options
Diffstat (limited to 'usr.sbin/ngctl/status.c')
| -rw-r--r-- | usr.sbin/ngctl/status.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/ngctl/status.c b/usr.sbin/ngctl/status.c index a6c6552fca2a..9fc5ff1ea2c0 100644 --- a/usr.sbin/ngctl/status.c +++ b/usr.sbin/ngctl/status.c @@ -71,7 +71,7 @@ StatusCmd(int ac, char **av) path = av[1]; break; default: - return(CMDRTN_USAGE); + return (CMDRTN_USAGE); } /* Get node status summary */ @@ -83,7 +83,7 @@ StatusCmd(int ac, char **av) break; default: warn("send msg"); - return(CMDRTN_ERROR); + return (CMDRTN_ERROR); } } else { if (NgRecvMsg(csock, resp, sizeof(sbuf), NULL) < 0 @@ -96,6 +96,6 @@ StatusCmd(int ac, char **av) printf("No status available for \"%s\"\n", path); else printf("Status for \"%s\":\n%s\n", path, status); - return(CMDRTN_OK); + return (CMDRTN_OK); } |
