diff options
author | FreeArtMan <dos21h@gmail.com> | 2017-09-07 23:00:20 +0100 |
---|---|---|
committer | FreeArtMan <dos21h@gmail.com> | 2017-09-07 23:00:20 +0100 |
commit | fc6970fcd404305c3e16d2e90d6d0dec4b03c160 (patch) | |
tree | ccd7caaf37ee746f71b09e6e80ef5ebe5d7db6f1 /cmd/cmd_stat.c | |
parent | 08f96759f9b1d5e8b1dd300971d23f833b819e7c (diff) | |
download | agni-fc6970fcd404305c3e16d2e90d6d0dec4b03c160.tar.gz agni-fc6970fcd404305c3e16d2e90d6d0dec4b03c160.zip |
Basic stat command implemented
Diffstat (limited to 'cmd/cmd_stat.c')
-rw-r--r-- | cmd/cmd_stat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/cmd_stat.c b/cmd/cmd_stat.c index ce19085..73b7fa6 100644 --- a/cmd/cmd_stat.c +++ b/cmd/cmd_stat.c @@ -37,7 +37,7 @@ void *cmd_stat(void *data) snprintf(buf,buf_size,"| IPC_RX | %08s |\n", tokens[3]); out_result = sdscat(out_result, buf); - out_result = sdscat(out_result,"+----------+----------+\n"); + out_result = sdscat(out_result,"+----------+----------+"); sdsfreesplitres(tokens, count); |