diff options
Diffstat (limited to 'coreutils/sort.c')
-rw-r--r-- | coreutils/sort.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/coreutils/sort.c b/coreutils/sort.c index eccc2d437..3562464d1 100644 --- a/coreutils/sort.c +++ b/coreutils/sort.c | |||
@@ -52,8 +52,8 @@ enum { | |||
52 | static char key_separator; | 52 | static char key_separator; |
53 | 53 | ||
54 | static struct sort_key { | 54 | static struct sort_key { |
55 | struct sort_key *next_key; /* linked list */ | 55 | struct sort_key *next_key; /* linked list */ |
56 | unsigned range[4]; /* start word, start char, end word, end char */ | 56 | unsigned range[4]; /* start word, start char, end word, end char */ |
57 | unsigned flags; | 57 | unsigned flags; |
58 | } *key_list; | 58 | } *key_list; |
59 | 59 | ||