Skip to content

Commit

Permalink
Update.
Browse files Browse the repository at this point in the history
	* locale/programs/ld-collate.c (collate_read): Fix warning.
  • Loading branch information
Ulrich Drepper committed Mar 15, 2000
1 parent c389162 commit 36388ac
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 2 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
2000-03-14 Ulrich Drepper <drepper@redhat.com>

* locale/programs/ld-collate.c (collate_read): Fix warning.

* sysdeps/unix/sysv/linux/i386/sys/ucontext.h: Prepend REG_ to enum
values and macros for register names.

Expand Down
3 changes: 2 additions & 1 deletion locale/programs/ld-collate.c
Original file line number Diff line number Diff line change
Expand Up @@ -3392,7 +3392,8 @@ error while adding equivalent collating symbol"));
{
lr_error (ldfile,
_("%s: order for `%.*s' already defined at %s:%zu"),
"LC_COLLATE", 9, "UNDEFINED", collate->undefined.file,
"LC_COLLATE", 9, "UNDEFINED",
(int) collate->undefined.file,
collate->undefined.line);
lr_ignore_rest (ldfile, 0);
}
Expand Down
2 changes: 1 addition & 1 deletion manual/message.texi
Original file line number Diff line number Diff line change
Expand Up @@ -1346,7 +1346,7 @@ Polish
The header entry would look like this:

@smallexample
nplurals=4; plural=n==1 ? 0 : n%10==2 ? 1 : n==3 || n+=4 ? 2 : 3
nplurals=4; plural=n==1 ? 0 : n%10==2 ? 1 : n%10==3 || n%10==4 ? 2 : 3
@end smallexample

@noindent
Expand Down

0 comments on commit 36388ac

Please sign in to comment.