mirror of git://sourceware.org/git/glibc.git
(insert_value): Correct order of arguments for lr_error call.
This commit is contained in:
parent
bcf045b0b2
commit
4ce29aadbe
|
|
@ -460,7 +460,7 @@ insert_value (struct linereader *ldfile, struct token *arg,
|
||||||
if (elem->next != NULL || elem->next == collate->cursor)
|
if (elem->next != NULL || elem->next == collate->cursor)
|
||||||
{
|
{
|
||||||
lr_error (ldfile, _("order for `%.*s' already defined at %s:%Z"),
|
lr_error (ldfile, _("order for `%.*s' already defined at %s:%Z"),
|
||||||
arg->val.str.startmb, arg->val.str.lenmb,
|
arg->val.str.lenmb, arg->val.str.startmb,
|
||||||
elem->file, elem->line);
|
elem->file, elem->line);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue