From 774fea38c48671ed44e54278f0280bae04822491 Mon Sep 17 00:00:00 2001 From: Rob Clark Date: Thu, 3 Apr 2014 15:35:53 -0400 Subject: [PATCH] int10: fix build error Fixes: stub.c:66:1: error: conflicting types for 'xf86int10Addr' In file included from stub.c:14:0: xf86int10.h:72:53: note: previous declaration of 'xf86int10Addr' was here Signed-off-by: Rob Clark --- hw/xfree86/int10/stub.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/xfree86/int10/stub.c b/hw/xfree86/int10/stub.c index 40e0ba719..4bbcddeda 100644 --- a/hw/xfree86/int10/stub.c +++ b/hw/xfree86/int10/stub.c @@ -63,7 +63,7 @@ xf86ExecX86int10(xf86Int10InfoPtr pInt) } void * -xf86int10Addr(xf86Int10InfoPtr pInt, CARD32 addr) +xf86int10Addr(xf86Int10InfoPtr pInt, uint32_t addr) { return 0; }