summaryrefslogtreecommitdiff
path: root/src/input/input_stdin_fifo.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/input/input_stdin_fifo.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/input/input_stdin_fifo.c')
-rw-r--r--src/input/input_stdin_fifo.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/input/input_stdin_fifo.c b/src/input/input_stdin_fifo.c
index 5c427d9f4..f98ea89bd 100644
--- a/src/input/input_stdin_fifo.c
+++ b/src/input/input_stdin_fifo.c
@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: input_stdin_fifo.c,v 1.60 2004/09/17 19:21:46 valtri Exp $
+ * $Id: input_stdin_fifo.c,v 1.61 2005/02/03 07:19:06 valtri Exp $
*/
#ifdef HAVE_CONFIG_H
@@ -158,7 +158,7 @@ static off_t stdin_plugin_seek (input_plugin_t *this_gen, off_t offset, int orig
this->curpos = offset;
else
xprintf (this->xine, XINE_VERBOSITY_LOG,
- _("stdin: cannot seek back! (%" PRIiMAX " > %" PRIiMAX ")\n"),
+ _("stdin: cannot seek back! (%" PRIdMAX " > %" PRIdMAX ")\n"),
(intmax_t)this->curpos, (intmax_t)offset);
} else {