[PATCH 2/3] XFree86: Linux: AGP: Fix void-pointer-arithmetic warning
Mark Kettenis
mark.kettenis at xs4all.nl
Fri Dec 31 03:51:58 PST 2010
> From: Daniel Stone <daniel at fooishbar.org>
> Date: Fri, 31 Dec 2010 09:55:10 +0000
>
> Cast it to a char *, mimicking the return immediately below it.
>
> Signed-off-by: Daniel Stone <daniel at fooishbar.org>
Reviewed-by: Mark Kettenis <kettenis at openbsd.org>
> ---
> hw/xfree86/os-support/linux/lnx_video.c | 2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/hw/xfree86/os-support/linux/lnx_video.c b/hw/xfree86/os-support/linux/lnx_video.c
> index 39c728d..3d45511 100644
> --- a/hw/xfree86/os-support/linux/lnx_video.c
> +++ b/hw/xfree86/os-support/linux/lnx_video.c
> @@ -461,7 +461,7 @@ mapVidMem(int ScreenNum, unsigned long Base, unsigned long Size, int flags)
> " (0x%08lx,0x%lx) (%s)\n", Base, Size,
> strerror(errno));
> }
> - DebugF("base: %lx aligned base: %lx\n",base, base + alignOff);
> + DebugF("base: %lx aligned base: %lx\n",base, (char *)base + alignOff);
> return (char *)base + alignOff;
> }
> #endif /* !(__sparc__) */
More information about the xorg-devel
mailing list