Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[xsrc/trunk]: xsrc/external/mit/xf86-video-ati/dist/src fix wrong printf format.



details:   https://anonhg.NetBSD.org/xsrc/rev/5cfd017757cb
branches:  trunk
changeset: 10103:5cfd017757cb
user:      christos <christos%NetBSD.org@localhost>
date:      Thu Jan 31 20:41:19 2019 +0000

description:
fix wrong printf format.

diffstat:

 external/mit/xf86-video-ati/dist/src/radeon_dri.c |  2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diffs (12 lines):

diff -r 7579ec1d76fd -r 5cfd017757cb external/mit/xf86-video-ati/dist/src/radeon_dri.c
--- a/external/mit/xf86-video-ati/dist/src/radeon_dri.c Thu Jan 31 20:40:59 2019 +0000
+++ b/external/mit/xf86-video-ati/dist/src/radeon_dri.c Thu Jan 31 20:41:19 2019 +0000
@@ -1070,7 +1070,7 @@
        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) {



Home | Main Index | Thread Index | Old Index