From 70db6f4c765fa4ee0a0532fe2e807253d8f6fc85 Mon Sep 17 00:00:00 2001 From: patacongo Date: Sun, 8 Aug 2010 03:48:15 +0000 Subject: [PATCH] Eliminate warning git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@2830 42af7a65-404d-4744-a932-0658087f49c3 --- graphics/nxglib/fb/nxglib_moverectangle.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/graphics/nxglib/fb/nxglib_moverectangle.c b/graphics/nxglib/fb/nxglib_moverectangle.c index 4403c6f6d02..4b426a10b27 100644 --- a/graphics/nxglib/fb/nxglib_moverectangle.c +++ b/graphics/nxglib/fb/nxglib_moverectangle.c @@ -183,7 +183,7 @@ void NXGL_FUNCNAME(nxgl_moverectangle,NXGLIB_SUFFIX) /* Copy the rectangle from top down. */ sline = pinfo->fbmem + rect->pt1.y * stride + NXGL_SCALEX(rect->pt1.x); - dline = dline - offset->y * stride - NXGL_SCALEX(offset->x); + dline = (FAR uint8_t*)sline - offset->y * stride - NXGL_SCALEX(offset->x); while (rows--) { @@ -206,7 +206,7 @@ void NXGL_FUNCNAME(nxgl_moverectangle,NXGLIB_SUFFIX) /* Copy the rectangle from the bottom up */ sline = pinfo->fbmem + rect->pt2.y * stride + NXGL_SCALEX(rect->pt1.x); - dline = dline - offset->y * stride - NXGL_SCALEX(offset->x); + dline = (FAR uint8_t*)sline - offset->y * stride - NXGL_SCALEX(offset->x); while (rows--) {