diff stream/stream.h @ 34136:a7784f6008a7

Replace 'q' printf length modifier by 'll'. 'q' is just a deprecated synonym of 'll' that should no longer be used.
author diego
date Thu, 20 Oct 2011 14:42:14 +0000
parents 3c172a874b4b
children cc8dfde2b6c5
line wrap: on
line diff
--- a/stream/stream.h	Thu Oct 20 13:09:08 2011 +0000
+++ b/stream/stream.h	Thu Oct 20 14:42:14 2011 +0000
@@ -294,7 +294,7 @@
 
 inline static int stream_seek(stream_t *s,off_t pos){
 
-  mp_dbg(MSGT_DEMUX, MSGL_DBG3, "seek to 0x%qX\n",(long long)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 %llx!\n",