From 27ff8784e794d5385d80e413fb74aa514249abe3 Mon Sep 17 00:00:00 2001 From: patacongo Date: Sun, 8 Aug 2010 03:48:15 +0000 Subject: Eliminate warning git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@2830 42af7a65-404d-4744-a932-0658087f49c3 --- nuttx/graphics/nxglib/fb/nxglib_moverectangle.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'nuttx/graphics') diff --git a/nuttx/graphics/nxglib/fb/nxglib_moverectangle.c b/nuttx/graphics/nxglib/fb/nxglib_moverectangle.c index 4403c6f6d..4b426a10b 100644 --- a/nuttx/graphics/nxglib/fb/nxglib_moverectangle.c +++ b/nuttx/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--) { -- cgit v1.2.3