Module Name:    xsrc
Committed By:   christos
Date:           Thu Jan 31 20:41:19 UTC 2019

Modified Files:
        xsrc/external/mit/xf86-video-ati/dist/src: radeon_dri.c

Log Message:
fix wrong printf format.


To generate a diff of this commit:
cvs rdiff -u -r1.9 -r1.10 \
    xsrc/external/mit/xf86-video-ati/dist/src/radeon_dri.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: xsrc/external/mit/xf86-video-ati/dist/src/radeon_dri.c
diff -u xsrc/external/mit/xf86-video-ati/dist/src/radeon_dri.c:1.9 xsrc/external/mit/xf86-video-ati/dist/src/radeon_dri.c:1.10
--- xsrc/external/mit/xf86-video-ati/dist/src/radeon_dri.c:1.9	Sun Sep 23 16:06:02 2012
+++ xsrc/external/mit/xf86-video-ati/dist/src/radeon_dri.c	Thu Jan 31 15:41:19 2019
@@ -1070,7 +1070,7 @@ static Bool RADEONDRIPciInit(RADEONInfoP
 	return FALSE;
     }
     xf86DrvMsg(pScreen->myNum, X_INFO,
-	       "[pci] ring handle = 0x%08lx, size = 0x%08lx\n", info->dri->ringHandle, info->dri->ringMapSize);
+	       "[pci] ring handle = 0x%08lx, size = 0x%08x\n", info->dri->ringHandle, info->dri->ringMapSize);
 
     if ((ret = drmMap(info->dri->drmFD, info->dri->ringHandle, info->dri->ringMapSize,
 	       &info->dri->ring)) < 0) {

Reply via email to