summaryrefslogtreecommitdiff
path: root/nuttx/graphics
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2008-12-01 22:10:28 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2008-12-01 22:10:28 +0000
commit2e5d80f7a34c92e7182b549bd35e0b218fd100a4 (patch)
treedd0be0f4867a97660244a911e714593d67fb43da /nuttx/graphics
parentdda23c2074bb7dbb8df9251e41c2daea1b447cd7 (diff)
downloadpx4-nuttx-2e5d80f7a34c92e7182b549bd35e0b218fd100a4.tar.gz
px4-nuttx-2e5d80f7a34c92e7182b549bd35e0b218fd100a4.tar.bz2
px4-nuttx-2e5d80f7a34c92e7182b549bd35e0b218fd100a4.zip
Fix some parameter passing
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@1385 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/graphics')
-rw-r--r--nuttx/graphics/nxmu/nxmu_server.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/nuttx/graphics/nxmu/nxmu_server.c b/nuttx/graphics/nxmu/nxmu_server.c
index 186a22ea8..1c6b9c94e 100644
--- a/nuttx/graphics/nxmu/nxmu_server.c
+++ b/nuttx/graphics/nxmu/nxmu_server.c
@@ -389,7 +389,7 @@ int nx_runinstance(FAR const char *mqname, FAR struct fb_vtable_s *fb)
case NX_SVRMSG_REQUESTBKGD: /* Give access to the background window */
{
FAR struct nxsvrmsg_requestbkgd_s *rqbgmsg = (FAR struct nxsvrmsg_requestbkgd_s *)buffer;
- nxmu_requestbkgd(rqbgmsg->conn, &fe.be, rqbgmsg->cb);
+ nxmu_requestbkgd(rqbgmsg->conn, &fe.be, rqbgmsg->cb, rqbgmsg->arg);
}
break;
@@ -473,7 +473,7 @@ int nx_runinstance(FAR const char *mqname, FAR struct fb_vtable_s *fb)
case NX_SVRMSG_MOUSEIN: /* New mouse report from mouse client */
{
FAR struct nxsvrmsg_mousein_s *mousemsg = (FAR struct nxsvrmsg_mousein_s *)buffer;
- nxmu_mousein(&fe.be, &mousemsg->pt, mousemsg->buttons);
+ nxmu_mousein(&fe, &mousemsg->pt, mousemsg->buttons);
}
break;
#endif
@@ -481,7 +481,7 @@ int nx_runinstance(FAR const char *mqname, FAR struct fb_vtable_s *fb)
case NX_SVRMSG_KBDIN: /* New keyboard report from keyboard client */
{
FAR struct nxsvrmsg_kbdin_s *kbdmsg = (FAR struct nxsvrmsg_kbdin_s *)buffer;
- nxmu_kbdin(&fe.be, kbdmsg->nch, kbdmsg->ch);
+ nxmu_kbdin(&fe, kbdmsg->nch, kbdmsg->ch);
}
break;
#endif