+2003-09-09 Bruno Haible <bruno@clisp.org>
+
+ * read-properties.c (phase4_getuc): Cast line_number to 'unsigned long'
+ before outputting it.
+
2003-09-09 Bruno Haible <bruno@clisp.org>
* po-lex.c: Test HAVE_DECL_GETC_UNLOCKED instead of HAVE_GETC_UNLOCKED.
{
phase3_ungetc (c1);
error_with_progname = false;
- error (0, 0, _("%s:%d: warning: invalid \\uxxxx syntax for Unicode character"),
- real_file_name, gram_pos.line_number);
+ error (0, 0, _("%s:%lu: warning: invalid \\uxxxx syntax for Unicode character"),
+ real_file_name, (unsigned long) gram_pos.line_number);
error_with_progname = true;
return 'u';
}