diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-01-05 17:34:44 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-01-05 17:34:44 +0000 |
commit | d569d3331fa1497cf177c03f912e5154dac8e204 (patch) | |
tree | 44d19fed2dbbbfda1aea63c2c7ee31309bc0fac0 /iconv | |
parent | 1914953f71bf9ace1981d838b3777e473e63e8d1 (diff) |
Update.
2000-01-05 Andreas Schwab <schwab@suse.de>
* iconv/iconv_prog.c (process_block): Add cast to avoid warning.
* locale/programs/linereader.c: Remove #include of stringtrans.h.
Diffstat (limited to 'iconv')
-rw-r--r-- | iconv/iconv_prog.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/iconv/iconv_prog.c b/iconv/iconv_prog.c index 0144ac40ee..f56409c358 100644 --- a/iconv/iconv_prog.c +++ b/iconv/iconv_prog.c @@ -372,7 +372,7 @@ conversion stopped due to problem in writing the output")); { case EILSEQ: error (0, 0, _("illegal input sequence at position %ld"), - addr - start); + (long) (addr - start)); break; case EINVAL: error (0, 0, _("\ |