From 1a4d9f652169afa08680d3ff2c2cf9efa2a76a1b Mon Sep 17 00:00:00 2001 From: Bartosz Golaszewski Date: Sat, 18 Jan 2014 15:25:58 +0100 Subject: [PATCH] sort.c: remove a magic number from compare_keys() Use bitwise OR of proper flags instead. Signed-off-by: Bartosz Golaszewski Signed-off-by: Denys Vlasenko --- coreutils/sort.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/coreutils/sort.c b/coreutils/sort.c index a1625fc9c..0b3b650c9 100644 --- a/coreutils/sort.c +++ b/coreutils/sort.c @@ -225,7 +225,7 @@ static int compare_keys(const void *xarg, const void *yarg) y = *(char **)yarg; #endif /* Perform actual comparison */ - switch (flags & 7) { + switch (flags & (FLAG_n | FLAG_M | FLAG_g)) { default: bb_error_msg_and_die("unknown sort type"); break; -- 2.25.1