diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-02-17 18:11:45 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-02-17 18:11:45 +0000 |
commit | 54cf511ce1286ce46f04e4cead085b4af829f179 (patch) | |
tree | a43331e67e2472f7a8c415aee09ce17137d734a6 /include | |
parent | ec27feb04589d46233802f686559fb5f532fb2df (diff) | |
download | busybox-w32-54cf511ce1286ce46f04e4cead085b4af829f179.tar.gz busybox-w32-54cf511ce1286ce46f04e4cead085b4af829f179.tar.bz2 busybox-w32-54cf511ce1286ce46f04e4cead085b4af829f179.zip |
sort: fix multiple -k (was ignoring all except last)
Diffstat (limited to 'include')
-rw-r--r-- | include/libbb.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/libbb.h b/include/libbb.h index 09e8a57d2..a32e6154c 100644 --- a/include/libbb.h +++ b/include/libbb.h | |||
@@ -473,7 +473,7 @@ extern void llist_add_to(llist_t **old_head, void *data); | |||
473 | extern void llist_add_to_end(llist_t **list_head, void *data); | 473 | extern void llist_add_to_end(llist_t **list_head, void *data); |
474 | extern void *llist_pop(llist_t **elm); | 474 | extern void *llist_pop(llist_t **elm); |
475 | extern void llist_free(llist_t *elm, void (*freeit)(void *data)); | 475 | extern void llist_free(llist_t *elm, void (*freeit)(void *data)); |
476 | extern llist_t* rev_llist(llist_t *list); | 476 | extern llist_t* llist_rev(llist_t *list); |
477 | 477 | ||
478 | enum { | 478 | enum { |
479 | LOGMODE_NONE = 0, | 479 | LOGMODE_NONE = 0, |