comparison 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
comparison
equal deleted inserted replaced
34135:1d0544de6b6c 34136:a7784f6008a7
292 return s->pos+s->buf_pos-s->buf_len; 292 return s->pos+s->buf_pos-s->buf_len;
293 } 293 }
294 294
295 inline static int stream_seek(stream_t *s,off_t pos){ 295 inline static int stream_seek(stream_t *s,off_t pos){
296 296
297 mp_dbg(MSGT_DEMUX, MSGL_DBG3, "seek to 0x%qX\n",(long long)pos); 297 mp_dbg(MSGT_DEMUX, MSGL_DBG3, "seek to 0x%llX\n", (long long)pos);
298 298
299 if (pos < 0) { 299 if (pos < 0) {
300 mp_msg(MSGT_DEMUX, MSGL_ERR, "Invalid seek to negative position %llx!\n", 300 mp_msg(MSGT_DEMUX, MSGL_ERR, "Invalid seek to negative position %llx!\n",
301 (long long)pos); 301 (long long)pos);
302 pos = 0; 302 pos = 0;