mirror of
https://github.com/apache/nuttx.git
synced 2026-08-16 09:53:23 +00:00
Eliminate warning
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@2830 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
parent
ada417ccac
commit
70db6f4c76
1 changed files with 2 additions and 2 deletions
|
|
@ -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--)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue