diff options
author | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2007-04-08 15:08:42 +0000 |
---|---|---|
committer | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2007-04-08 15:08:42 +0000 |
commit | d9f0f6429acee15bbb6767440ce207a593b0927d (patch) | |
tree | 157087760d624a657c3ce11b142afb1c72bf225a /editors | |
parent | bc44ebb91eed896d07ac0f951910f25d55e1f4eb (diff) | |
download | busybox-w32-d9f0f6429acee15bbb6767440ce207a593b0927d.tar.gz busybox-w32-d9f0f6429acee15bbb6767440ce207a593b0927d.tar.bz2 busybox-w32-d9f0f6429acee15bbb6767440ce207a593b0927d.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
git-svn-id: svn://busybox.net/trunk/busybox@18364 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'editors')
-rw-r--r-- | editors/awk.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/editors/awk.c b/editors/awk.c index a18025ef0..f331a33fa 100644 --- a/editors/awk.c +++ b/editors/awk.c | |||
@@ -2707,7 +2707,6 @@ int awk_main(int argc, char **argv) | |||
2707 | argv += optind; | 2707 | argv += optind; |
2708 | argc -= optind; | 2708 | argc -= optind; |
2709 | if (opt & 0x1) setvar_s(V[FS], opt_F); // -F | 2709 | if (opt & 0x1) setvar_s(V[FS], opt_F); // -F |
2710 | opt_v = llist_rev(opt_v); | ||
2711 | while (opt_v) { /* -v */ | 2710 | while (opt_v) { /* -v */ |
2712 | if (!is_assignment(llist_pop(&opt_v))) | 2711 | if (!is_assignment(llist_pop(&opt_v))) |
2713 | bb_show_usage(); | 2712 | bb_show_usage(); |