[MPlayer-cvslog] r34228 - trunk/stream/stream.h

cehoyos subversion at mplayerhq.hu
Fri Oct 21 10:49:48 CEST 2011


Author: cehoyos
Date: Fri Oct 21 10:49:48 2011
New Revision: 34228

Log:
Fix compilation: Partly revert r34227.

Modified:
   trunk/stream/stream.h

Modified: trunk/stream/stream.h
==============================================================================
--- trunk/stream/stream.h	Thu Oct 20 23:49:30 2011	(r34227)
+++ trunk/stream/stream.h	Fri Oct 21 10:49:48 2011	(r34228)
@@ -294,11 +294,11 @@ inline static off_t stream_tell(stream_t
 
 inline static int stream_seek(stream_t *s,off_t pos){
 
-  mp_dbg(MSGT_DEMUX, MSGL_DBG3, "seek to 0x%"PRIu64"X\n", pos);
+  mp_dbg(MSGT_DEMUX, MSGL_DBG3, "seek to 0x%llX\n", (long long)pos);
 
   if (pos < 0) {
-    mp_msg(MSGT_DEMUX, MSGL_ERR,
-           "Invalid seek to negative position %"PRIu64"x!\n", pos);
+    mp_msg(MSGT_DEMUX, MSGL_ERR, "Invalid seek to negative position %llx!\n",
+           (long long)pos);
     pos = 0;
   }
   if(pos<s->pos){


More information about the MPlayer-cvslog mailing list