diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2013-01-15 13:58:01 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2013-01-15 13:58:01 +0100 |
commit | 6830ade6aa91dad5afe6abf9d1e4f696f5641bf1 (patch) | |
tree | 0b7de8e0cbaa864f742901814f734549270e5ff9 /coreutils/sort.c | |
parent | 30a8652fbf16884490cee4a624f039a9ab587269 (diff) | |
download | busybox-w32-6830ade6aa91dad5afe6abf9d1e4f696f5641bf1.tar.gz busybox-w32-6830ade6aa91dad5afe6abf9d1e4f696f5641bf1.tar.bz2 busybox-w32-6830ade6aa91dad5afe6abf9d1e4f696f5641bf1.zip |
whitespace fixes. no code changes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'coreutils/sort.c')
-rw-r--r-- | coreutils/sort.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/sort.c b/coreutils/sort.c index 1df07285c..a1625fc9c 100644 --- a/coreutils/sort.c +++ b/coreutils/sort.c | |||
@@ -219,7 +219,7 @@ static int compare_keys(const void *xarg, const void *yarg) | |||
219 | y = get_key(*(char **)yarg, key, flags); | 219 | y = get_key(*(char **)yarg, key, flags); |
220 | #else | 220 | #else |
221 | /* This curly bracket serves no purpose but to match the nesting | 221 | /* This curly bracket serves no purpose but to match the nesting |
222 | level of the for () loop we're not using */ | 222 | * level of the for () loop we're not using */ |
223 | { | 223 | { |
224 | x = *(char **)xarg; | 224 | x = *(char **)xarg; |
225 | y = *(char **)yarg; | 225 | y = *(char **)yarg; |