diff options
author | Siddhesh Poyarekar <siddhesh@redhat.com> | 2014-10-17 15:52:46 +0530 |
---|---|---|
committer | Siddhesh Poyarekar <siddhesh@redhat.com> | 2014-10-17 15:52:46 +0530 |
commit | 33cc770b986b5a913576cf264e6dff3b0f6aea95 (patch) | |
tree | 51f719ef68b2afa7458a99d0ae526e697db04468 /string/strcoll_l.c | |
parent | 0742aef6e52a935f9ccd69594831b56d807feef3 (diff) | |
download | glibc-33cc770b986b5a913576cf264e6dff3b0f6aea95.tar glibc-33cc770b986b5a913576cf264e6dff3b0f6aea95.tar.gz glibc-33cc770b986b5a913576cf264e6dff3b0f6aea95.tar.bz2 glibc-33cc770b986b5a913576cf264e6dff3b0f6aea95.zip |
Fix up incorrect formatting in last commit
Diffstat (limited to 'string/strcoll_l.c')
-rw-r--r-- | string/strcoll_l.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/string/strcoll_l.c b/string/strcoll_l.c index 6677eafca8..7a2d066e9b 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; |