Skip to content
Snippets Groups Projects
Commit 70db6f4c authored by patacongo's avatar patacongo
Browse files

Eliminate warning

git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@2830 42af7a65-404d-4744-a932-0658087f49c3
parent ada417cc
No related branches found
No related tags found
No related merge requests found
......@@ -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--)
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment