From: Siddhesh Poyarekar Date: Fri, 17 Oct 2014 10:22:46 +0000 (+0530) Subject: Fix up incorrect formatting in last commit X-Git-Tag: glibc-2.21~493 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=33cc770b986b5a913576cf264e6dff3b0f6aea95;p=thirdparty%2Fglibc.git Fix up incorrect formatting in last commit --- diff --git a/ChangeLog b/ChangeLog index 1aa1e6ede83..3a5cddd8959 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2014-10-17 Siddhesh Poyarekar + + * string/strcoll_l.c (get_next_seq): Fix up formatting. + (do_compare): Likewise. + 2014-10-17 Leonhard Holz [BZ #15884] diff --git a/string/strcoll_l.c b/string/strcoll_l.c index 6677eafca84..7a2d066e9ba 100644 --- a/string/strcoll_l.c +++ b/string/strcoll_l.c @@ -65,9 +65,9 @@ typedef struct /* Get next sequence. Traverse the string as required. */ static void get_next_seq (coll_seq *seq, int nrules, const unsigned char *rulesets, - const USTRING_TYPE *weights, const int32_t *table, - const USTRING_TYPE *extra, const int32_t *indirect, - int pass) + const USTRING_TYPE *weights, const int32_t *table, + const USTRING_TYPE *extra, const int32_t *indirect, + int pass) { size_t val = seq->val = 0; int len = seq->len; @@ -196,7 +196,7 @@ get_next_seq (coll_seq *seq, int nrules, const unsigned char *rulesets, /* Compare two sequences. */ static int do_compare (coll_seq *seq1, coll_seq *seq2, int position, - const USTRING_TYPE *weights) + const USTRING_TYPE *weights) { int seq1len = seq1->len; int seq2len = seq2->len;