summaryrefslogtreecommitdiffstats
path: root/libvo/vo_fsdga.c
diff options
context:
space:
mode:
Diffstat (limited to 'libvo/vo_fsdga.c')
-rw-r--r--libvo/vo_fsdga.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libvo/vo_fsdga.c b/libvo/vo_fsdga.c
index 949e378b82..3c636deafa 100644
--- a/libvo/vo_fsdga.c
+++ b/libvo/vo_fsdga.c
@@ -281,7 +281,7 @@ static uint32_t query_format( uint32_t format )
printf("vo_dga: query_format\n");
if( !vo_init() ) return 0; // Can't open X11
- printf("Format: %lx\n", format);
+ printf("Format: %lx\n", (unsigned long) format);
if( format==IMGFMT_YV12 ) return 1;
if( ( format&IMGFMT_BGR_MASK )==IMGFMT_BGR &&
@@ -341,7 +341,7 @@ static uint32_t init( uint32_t width, uint32_t height,
vo_dga_src_height = height;
vo_dga_bpp = (vo_depthonscreen+7) >> 3;
- printf("vo_dga: bytes/line: %d, screen res: %dx%d, depth: %d, base: %08x, bpp: %d\n",
+ printf("vo_dga: bytes/line: %d, screen res: %dx%d, depth: %d, base: %p, bpp: %d\n",
vo_dga_width, vo_dga_vp_width,
vo_dga_vp_height, vo_depthonscreen, vo_dga_base,
vo_dga_bpp);