[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20091214082700.4224.57640.sendpatchset@localhost.localdomain>
Date: Mon, 14 Dec 2009 03:23:56 -0500
From: Amerigo Wang <amwang@...hat.com>
To: linux-kernel@...r.kernel.org
Cc: mingo@...e.hu, Amerigo Wang <amwang@...hat.com>
Subject: [Patch] perf: use format string of printf to align strings
Instead of filling whitespaces to do alignment, use
printf's format string.
Signed-off-by: WANG Cong <amwang@...hat.com>
---
diff --git a/tools/perf/builtin-help.c b/tools/perf/builtin-help.c
index 9f810b1..e427d69 100644
--- a/tools/perf/builtin-help.c
+++ b/tools/perf/builtin-help.c
@@ -286,8 +286,7 @@ void list_common_cmds_help(void)
puts(" The most commonly used perf commands are:");
for (i = 0; i < ARRAY_SIZE(common_cmds); i++) {
- printf(" %s ", common_cmds[i].name);
- mput_char(' ', longest - strlen(common_cmds[i].name));
+ printf(" %-*s ", longest, common_cmds[i].name);
puts(common_cmds[i].help);
}
}
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists