summaryrefslogtreecommitdiff
path: root/kernel
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2015-10-17 02:22:42 +0200
committerClifford Wolf <clifford@clifford.at>2015-10-17 02:35:19 +0200
commit5d1c0ce7c0be94b5809ea45a62aeb9dd76a3e060 (patch)
treea86330507c36cc54cd5d001a567f1d5fea197cdf /kernel
parent255bb914bada727806df4bdc22ab8472f03a6317 (diff)
Progress on cell help messages
Diffstat (limited to 'kernel')
-rw-r--r--kernel/register.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/register.cc b/kernel/register.cc
index 42129423..6bcee858 100644
--- a/kernel/register.cc
+++ b/kernel/register.cc
@@ -644,7 +644,7 @@ struct HelpPass : public Pass {
for (auto &it : cell_help_messages.cell_help) {
string line = split_tokens(it.second, "\n").at(0);
string cell_name = next_token(line);
- log(" %-10s %s\n", cell_name.c_str(), line.c_str());
+ log(" %-15s %s\n", cell_name.c_str(), line.c_str());
}
log("\n");
log("Type 'help <cell_type>' for more information on a cell type.\n");