drivers/video/fb.c: Fix a typo introduced in previous commit.

This commit is contained in:
Gregory Nutt 2017-09-17 14:07:08 -06:00
parent cfd44639b2
commit 882adb2c82
2 changed files with 1 additions and 5 deletions

View File

@ -498,10 +498,6 @@
# endif
#endif
/****************************************************************************
* Private Data
****************************************************************************/
/****************************************************************************
* Private Functions
****************************************************************************/

View File

@ -415,7 +415,7 @@ static int fb_ioctl(FAR struct file *filep, int cmd, unsigned long arg)
ret = fb->vtable->getplaneinfo(fb->vtable, fb->plane, &pinfo);
if (ret >= 0)
{
nx_notify_rectangle(((FAR NX_PLANEINFOTYPE *)&pinfo, rect);
nx_notify_rectangle((FAR NX_PLANEINFOTYPE *)&pinfo, rect);
}
}
break;