Commit f4fe81d2 authored by Christian Hesse's avatar Christian Hesse Committed by Stephen Hemminger

ip-link: fix column alignment

Width is the maximum number of characters used for the value, excluding a
field separator. So append a single whitespace.
parent 1e264abc
......@@ -327,7 +327,7 @@ static void print_num(FILE *fp, unsigned width, uint64_t count)
char buf[64];
if (!human_readable || count < base) {
fprintf(fp, "%-*"PRIu64, width, count);
fprintf(fp, "%-*"PRIu64" ", width, count);
return;
}
......@@ -346,7 +346,7 @@ static void print_num(FILE *fp, unsigned width, uint64_t count)
snprintf(buf, sizeof(buf), "%.1f%c%s", (double) count / powi,
*prefix, use_iec ? "i" : "");
fprintf(fp, "%-*s", width, buf);
fprintf(fp, "%-*s ", width, buf);
}
static void print_link_stats64(FILE *fp, const struct rtnl_link_stats64 *s,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment