summaryrefslogtreecommitdiffstats
path: root/gettext-tools/src/read-properties.c
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2003-09-09 13:49:07 +0000
committerBruno Haible <bruno@clisp.org>2009-06-23 12:10:58 +0200
commit880bfd1a0b64e4f058635b345214d697870c0312 (patch)
treeabeb8da1f2916a6603b7e50583f27f8e0c59e1ec /gettext-tools/src/read-properties.c
parent192e30d6916d1c3dad4132b3f11a2245a1104f0f (diff)
downloadexternal_gettext-880bfd1a0b64e4f058635b345214d697870c0312.zip
external_gettext-880bfd1a0b64e4f058635b345214d697870c0312.tar.gz
external_gettext-880bfd1a0b64e4f058635b345214d697870c0312.tar.bz2
Avoid a warning on OSF/1.
Diffstat (limited to 'gettext-tools/src/read-properties.c')
-rw-r--r--gettext-tools/src/read-properties.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gettext-tools/src/read-properties.c b/gettext-tools/src/read-properties.c
index b56bff5..3b94fa2 100644
--- a/gettext-tools/src/read-properties.c
+++ b/gettext-tools/src/read-properties.c
@@ -212,8 +212,8 @@ phase4_getuc ()
{
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';
}