diff options
Diffstat (limited to 'src/input')
-rw-r--r-- | src/input/input_http.c | 6 | ||||
-rw-r--r-- | src/input/input_net.c | 6 | ||||
-rw-r--r-- | src/input/input_pnm.c | 2 | ||||
-rw-r--r-- | src/input/input_stdin_fifo.c | 4 |
4 files changed, 9 insertions, 9 deletions
diff --git a/src/input/input_http.c b/src/input/input_http.c index 77967a774..e82c01d49 100644 --- a/src/input/input_http.c +++ b/src/input/input_http.c @@ -19,7 +19,7 @@ * * input plugin for http network streams * - * $Id: input_http.c,v 1.106 2005/01/17 19:27:51 tmattern Exp $ + * $Id: input_http.c,v 1.107 2005/02/03 07:19:06 valtri Exp $ */ #ifdef HAVE_CONFIG_H @@ -544,7 +544,7 @@ static off_t http_plugin_seek(input_plugin_t *this_gen, off_t offset, int origin this->curpos = offset; else xprintf(this->stream->xine, XINE_VERBOSITY_DEBUG, - "http: cannot seek back! (%" PRIiMAX " > %" PRIiMAX ")\n", + "http: cannot seek back! (%" PRIdMAX " > %" PRIdMAX ")\n", (intmax_t)this->curpos, (intmax_t)offset); } else { @@ -829,7 +829,7 @@ static int http_plugin_open (input_plugin_t *this_gen ) { if (sscanf(this->buf, "Content-Length: %" SCNdMAX , &contentlength) == 1) { xine_log (this->stream->xine, XINE_LOG_MSG, - _("input_http: content length = %" PRIiMAX " bytes\n"), + _("input_http: content length = %" PRIdMAX " bytes\n"), contentlength); this->contentlength = (off_t)contentlength; } diff --git a/src/input/input_net.c b/src/input/input_net.c index 947a71177..d1d500e11 100644 --- a/src/input/input_net.c +++ b/src/input/input_net.c @@ -20,7 +20,7 @@ * Read from a tcp network stream over a lan (put a tweaked mp1e encoder the * other end and you can watch tv anywhere in the house ..) * - * $Id: input_net.c,v 1.61 2005/01/05 21:48:05 dsalt Exp $ + * $Id: input_net.c,v 1.62 2005/02/03 07:19:06 valtri Exp $ * * how to set up mp1e for use with this plugin: * @@ -271,7 +271,7 @@ static off_t net_plugin_read (input_plugin_t *this_gen, if( (len-total) > 0 ) { n = _x_read_abort (this->stream, this->fh, &buf[total], len-total); - xprintf(this->stream->xine, XINE_VERBOSITY_DEBUG, "input_net: got %" PRIiMAX " bytes (%" PRIiMAX "/%" PRIiMAX " bytes read)\n", (intmax_t)n, (intmax_t)total, (intmax_t)len); + xprintf(this->stream->xine, XINE_VERBOSITY_DEBUG, "input_net: got %" PRIdMAX " bytes (%" PRIdMAX "/%" PRIdMAX " bytes read)\n", (intmax_t)n, (intmax_t)total, (intmax_t)len); if (n < 0) { _x_message(this->stream, XINE_MSG_READ_ERROR, this->host_port, NULL); @@ -348,7 +348,7 @@ static off_t net_plugin_seek (input_plugin_t *this_gen, off_t offset, int origin this->curpos = offset; else xprintf(this->stream->xine, XINE_VERBOSITY_DEBUG, - "input_net: cannot seek back! (%" PRIiMAX " > %" PRIiMAX ")\n", + "input_net: cannot seek back! (%" PRIdMAX " > %" PRIdMAX ")\n", (intmax_t)this->curpos, (intmax_t)offset); } else { 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 */ 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 { |