diff options
author | midipix <writeonce@midipix.org> | 2016-11-16 00:15:34 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2016-11-16 00:15:34 -0500 |
commit | adc3377564d8e14d0581d5f96c62b17395734ec3 (patch) | |
tree | 9dbe965a60ad446985e98c77f773c9bdfaf11a8d | |
parent | ae263ea0ddf17e85fcba972ace031bb922b3e855 (diff) | |
download | perk-adc3377564d8e14d0581d5f96c62b17395734ec3.tar.bz2 perk-adc3377564d8e14d0581d5f96c62b17395734ec3.tar.xz |
driver: skin: be pedantic.
-rw-r--r-- | src/skin/pe_skin_default.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/skin/pe_skin_default.c b/src/skin/pe_skin_default.c index 98381b6..8833aba 100644 --- a/src/skin/pe_skin_default.c +++ b/src/skin/pe_skin_default.c @@ -15,17 +15,17 @@ const struct argv_option pe_default_options[] = { "print image category"}, {"sections", 's',TAG_SECTIONS,ARGV_OPTARG_NONE,0,0,0, - "print image sections"}, + "list image sections"}, {"expsyms", 'e',TAG_EXPSYMS,ARGV_OPTARG_NONE,0,0,0, - "print exported symbols" }, + "list exported symbols" }, {"implibs", 'i',TAG_IMPLIBS,ARGV_OPTARG_NONE,0,0,0, "list direct dependency libraries"}, {"impsyms", 'I',TAG_IMPSYMS,ARGV_OPTARG_NONE,0,0,0, "list direct dependency libraries " - "along with required symbols"}, + "along with imported symbols"}, {0,0,0,0,0,0,0,0} }; |