From 7db312ad265608264c1d42106ceadf158ff7f77e Mon Sep 17 00:00:00 2001 From: Maninder Singh Date: Mon, 1 Jun 2015 10:40:09 +0000 Subject: [PATCH] fix whitespaces reported by script :- scripts/fix_ws.sh Signed-off-by: Maninder Singh Signed-off-by: Denys Vlasenko --- coreutils/shuf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) *dash = '\0'; lo = xatou(opt_i_str); hi = xatou(dash + 1); - *dash = '-'; + *dash = '-'; if (hi < lo) { bb_error_msg_and_die("bad range '%s'", opt_i_str); }