summaryrefslogtreecommitdiff
path: root/lib/unixctl.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/unixctl.c')
-rw-r--r--lib/unixctl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/unixctl.c b/lib/unixctl.c
index 2a2bcf215..caaf252df 100644
--- a/lib/unixctl.c
+++ b/lib/unixctl.c
@@ -96,7 +96,7 @@ unixctl_help(struct unixctl_conn *conn, int argc OVS_UNUSED,
const struct shash_node *node = nodes[i];
const struct unixctl_command *command = node->data;
- ds_put_format(&ds, " %-23s%s\n", node->name, command->usage);
+ ds_put_format(&ds, " %-23s %s\n", node->name, command->usage);
}
free(nodes);