diff h264.c @ 1266:ec946cb74397 libavcodec

Warning fixes.
author mellum
date Thu, 15 May 2003 01:34:47 +0000
parents 2fa34e615c76
children 2498a7045b37
line wrap: on
line diff
--- a/h264.c	Thu May 15 00:43:43 2003 +0000
+++ b/h264.c	Thu May 15 01:34:47 2003 +0000
@@ -2563,7 +2563,7 @@
     for(i=0; i<h->short_ref_count; i++){
         Picture *pic= h->short_ref[i];
         if(s->avctx->debug&FF_DEBUG_MMCO)
-            printf("%d %d %X\n", i, pic->frame_num, (int)pic);
+            printf("%d %d %p\n", i, pic->frame_num, pic);
         if(pic->frame_num == frame_num){
             h->short_ref[i]= NULL;
             memmove(&h->short_ref[i], &h->short_ref[i+1], (h->short_ref_count - i - 1)*sizeof(Picture*));