drivers/video/fb.c: Fix a typo introduced in previous commit.
This commit is contained in:
parent
cfd44639b2
commit
882adb2c82
|
@ -498,10 +498,6 @@
|
|||
# endif
|
||||
#endif
|
||||
|
||||
/****************************************************************************
|
||||
* Private Data
|
||||
****************************************************************************/
|
||||
|
||||
/****************************************************************************
|
||||
* Private Functions
|
||||
****************************************************************************/
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue