summaryrefslogtreecommitdiff
path: root/src/demuxers/demux_flv.c
diff options
context:
space:
mode:
authorFrantišek Dvořák <valtri@users.sourceforge.net>2005-02-03 07:19:03 +0000
committerFrantišek Dvořák <valtri@users.sourceforge.net>2005-02-03 07:19:03 +0000
commit89c1c59fb83bc1d4598543b1bcaee5b69776b421 (patch)
tree8f8f88de29b540e4f21ed63a243c12288571fbef /src/demuxers/demux_flv.c
parent00f8f557ae278bb0aa4dee3cb664e154d32a7ba3 (diff)
downloadxine-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/demuxers/demux_flv.c')
-rw-r--r--src/demuxers/demux_flv.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/demuxers/demux_flv.c b/src/demuxers/demux_flv.c
index 3f09d2b73..09a621212 100644
--- a/src/demuxers/demux_flv.c
+++ b/src/demuxers/demux_flv.c
@@ -24,7 +24,7 @@
* For more information on the FLV file format, visit:
* http://download.macromedia.com/pub/flash/flash_file_format_specification.pdf
*
- * $Id: demux_flv.c,v 1.4 2004/09/17 19:21:34 valtri Exp $
+ * $Id: demux_flv.c,v 1.5 2005/02/03 07:19:05 valtri Exp $
*/
#ifdef HAVE_CONFIG_H
@@ -99,7 +99,7 @@ static int open_flv_file(demux_flv_t *this) {
first_offset = BE_32(buffer);
this->input->seek(this->input, first_offset, SEEK_SET);
- lprintf(" qualified FLV file, repositioned @ offset 0x%" PRIXMAX "\n",
+ lprintf(" qualified FLV file, repositioned @ offset 0x%" PRIxMAX "\n",
(intmax_t)first_offset);
return 1;