diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-04-08 15:08:42 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-04-08 15:08:42 +0000 |
commit | 8d9f495d68664017e0b87f2c0c2d0eae9f3c4836 (patch) | |
tree | 157087760d624a657c3ce11b142afb1c72bf225a /procps/ps.c | |
parent | b04b4357ff5a5b5194a7ff3c875d8746fac9ff33 (diff) | |
download | busybox-w32-8d9f495d68664017e0b87f2c0c2d0eae9f3c4836.tar.gz busybox-w32-8d9f495d68664017e0b87f2c0c2d0eae9f3c4836.tar.bz2 busybox-w32-8d9f495d68664017e0b87f2c0c2d0eae9f3c4836.zip |
getopt32: fix llist_t options ordering. llist_rev is not unused.
function old new delta
tar_main 705 695 -10
sort_main 928 918 -10
decode_format_string 886 876 -10
run_parts_main 197 185 -12
ps_main 513 500 -13
wget_main 2764 2750 -14
awk_main 1014 1000 -14
od_main 2886 2866 -20
llist_rev 25 - -25
------------------------------------------------------------------------------
(add/remove: 0/1 grow/shrink: 0/8 up/down: 0/-128) Total: -128 bytes
Diffstat (limited to 'procps/ps.c')
-rw-r--r-- | procps/ps.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/procps/ps.c b/procps/ps.c index 2be0b3605..f8f5c1aa9 100644 --- a/procps/ps.c +++ b/procps/ps.c | |||
@@ -253,7 +253,6 @@ int ps_main(int argc, char **argv) | |||
253 | opt_complementary = "o::"; | 253 | opt_complementary = "o::"; |
254 | getopt32(argc, argv, "o:aAdefl", &opt_o); | 254 | getopt32(argc, argv, "o:aAdefl", &opt_o); |
255 | if (opt_o) { | 255 | if (opt_o) { |
256 | opt_o = llist_rev(opt_o); | ||
257 | do { | 256 | do { |
258 | parse_o(opt_o->data); | 257 | parse_o(opt_o->data); |
259 | opt_o = opt_o->link; | 258 | opt_o = opt_o->link; |