diff options
author | Maninder Singh <maninder1.s@samsung.com> | 2015-06-01 10:40:09 +0000 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2015-06-07 18:19:47 +0200 |
commit | 7db312ad265608264c1d42106ceadf158ff7f77e (patch) | |
tree | af52f33d826c1ca68fd43fd655ae1900a6dfd329 /coreutils | |
parent | 0fabedf085591b50994e4f8c133bfa87f1777ee4 (diff) | |
download | busybox-w32-7db312ad265608264c1d42106ceadf158ff7f77e.tar.gz busybox-w32-7db312ad265608264c1d42106ceadf158ff7f77e.tar.bz2 busybox-w32-7db312ad265608264c1d42106ceadf158ff7f77e.zip |
fix whitespaces
reported by script :- scripts/fix_ws.sh
Signed-off-by: Maninder Singh <maninder1.s@samsung.com>
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'coreutils')
-rw-r--r-- | coreutils/shuf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/shuf.c b/coreutils/shuf.c index 6d0a68fc1..9f61f2f7d 100644 --- a/coreutils/shuf.c +++ b/coreutils/shuf.c | |||
@@ -94,7 +94,7 @@ int shuf_main(int argc, char **argv) | |||
94 | *dash = '\0'; | 94 | *dash = '\0'; |
95 | lo = xatou(opt_i_str); | 95 | lo = xatou(opt_i_str); |
96 | hi = xatou(dash + 1); | 96 | hi = xatou(dash + 1); |
97 | *dash = '-'; | 97 | *dash = '-'; |
98 | if (hi < lo) { | 98 | if (hi < lo) { |
99 | bb_error_msg_and_die("bad range '%s'", opt_i_str); | 99 | bb_error_msg_and_die("bad range '%s'", opt_i_str); |
100 | } | 100 | } |