diff options
author | Denis Vlasenko | 2006-10-01 21:05:12 +0000 |
---|---|---|
committer | Denis Vlasenko | 2006-10-01 21:05:12 +0000 |
commit | b97c9842a521a54980b247ab8b920f057b128b2e (patch) | |
tree | 54731506b0d02a639aa2781412ca3ceab927594f /coreutils | |
parent | bb119d059a80c85fe844b9f9c770e0c77aeb49e6 (diff) | |
download | busybox-b97c9842a521a54980b247ab8b920f057b128b2e.zip busybox-b97c9842a521a54980b247ab8b920f057b128b2e.tar.gz |
sed: unbreak multiple -e, -f option handling (my fault)
Diffstat (limited to 'coreutils')
-rw-r--r-- | coreutils/od.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/od.c b/coreutils/od.c index df06dd3..60a5174 100644 --- a/coreutils/od.c +++ b/coreutils/od.c @@ -189,7 +189,7 @@ int od_main(int argc, char **argv) odoffset(argc, &argv); - return(bb_dump_dump(argv)); + return bb_dump_dump(argv); } /*- |