diff options
author | František Dvořák <valtri@users.sourceforge.net> | 2005-02-03 07:19:03 +0000 |
---|---|---|
committer | František Dvořák <valtri@users.sourceforge.net> | 2005-02-03 07:19:03 +0000 |
commit | 89c1c59fb83bc1d4598543b1bcaee5b69776b421 (patch) | |
tree | 8f8f88de29b540e4f21ed63a243c12288571fbef /src/input/input_pnm.c | |
parent | 00f8f557ae278bb0aa4dee3cb664e154d32a7ba3 (diff) | |
download | xine-lib-89c1c59fb83bc1d4598543b1bcaee5b69776b421.tar.gz xine-lib-89c1c59fb83bc1d4598543b1bcaee5b69776b421.tar.bz2 |
**BUGFIX**
Fixed build on solaris:
- use libresolv in hstrerror check
- replace PRIiMAX and PRIXMAX by PRIdMAX and PRIxMAX
Removed timezone struct for MinGW from public os_types.h, update header comment.
Fixed build musepack library on some platforms using xine types.
Thanks to Niki W. Waibel for reporting and testing.
CVS patchset: 7378
CVS date: 2005/02/03 07:19:03
Diffstat (limited to 'src/input/input_pnm.c')
-rw-r--r-- | src/input/input_pnm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/input/input_pnm.c b/src/input/input_pnm.c index 52c8ea997..8e411240d 100644 --- a/src/input/input_pnm.c +++ b/src/input/input_pnm.c @@ -121,7 +121,7 @@ static off_t pnm_plugin_seek (input_plugin_t *this_gen, off_t offset, int origin pnm_input_plugin_t *this = (pnm_input_plugin_t *) this_gen; xprintf (this->stream->xine, XINE_VERBOSITY_DEBUG, - "input_pnm: seek %" PRIiMAX " bytes, origin %d\n", (intmax_t)offset, + "input_pnm: seek %" PRIdMAX " bytes, origin %d\n", (intmax_t)offset, origin); /* only realtive forward-seeking is implemented */ |