svn commit: r358498 - head/tools/tools/controlelf
Ed Maste
emaste at FreeBSD.org
Sun Mar 1 20:19:39 UTC 2020
Author: emaste
Date: Sun Mar 1 20:19:38 2020
New Revision: 358498
URL: https://svnweb.freebsd.org/changeset/base/358498
Log:
controlelf: fix indentation for larger flags
Sponsored by: The FreeBSD Foundation
Modified:
head/tools/tools/controlelf/controlelf.c
Modified: head/tools/tools/controlelf/controlelf.c
==============================================================================
--- head/tools/tools/controlelf/controlelf.c Sun Mar 1 19:15:03 2020 (r358497)
+++ head/tools/tools/controlelf/controlelf.c Sun Mar 1 20:19:38 2020 (r358498)
@@ -273,7 +273,7 @@ print_features(void)
printf("Known features are:\n");
for (i = 0; i < nitems(featurelist); ++i)
- printf("%s\t\t %s\n", featurelist[i].alias,
+ printf("%-16s%s\n", featurelist[i].alias,
featurelist[i].desc);
}
@@ -289,7 +289,7 @@ print_file_features(Elf *elf, int phcount, int fd, cha
printf("File '%s' features:\n", filename);
for (i = 0; i < nitems(featurelist); ++i) {
- printf("%s\t\t'%s' is ", featurelist[i].alias,
+ printf("%-16s'%s' is ", featurelist[i].alias,
featurelist[i].desc);
if ((featurelist[i].value & features) == 0)
More information about the svn-src-head
mailing list