forked from nuttx/nuttx-update
Fix warnings in graphics subsystem due to previous fix to mqueue prototypes
This commit is contained in:
parent
bd61b00b15
commit
f13e1bb7bf
2 changed files with 3 additions and 3 deletions
|
@ -291,9 +291,9 @@ static inline int nxmu_setup(FAR const char *mqname, FAR NX_DRIVERTYPE *dev,
|
|||
|
||||
int nx_runinstance(FAR const char *mqname, FAR NX_DRIVERTYPE *dev)
|
||||
{
|
||||
struct nxfe_state_s fe;
|
||||
struct nxfe_state_s fe;
|
||||
FAR struct nxsvrmsg_s *msg;
|
||||
uint8_t buffer[NX_MXSVRMSGLEN];
|
||||
char buffer[NX_MXSVRMSGLEN];
|
||||
int nbytes;
|
||||
int ret;
|
||||
|
||||
|
|
|
@ -138,7 +138,7 @@ int nx_eventhandler(NXHANDLE handle)
|
|||
FAR struct nxfe_conn_s *conn = (FAR struct nxfe_conn_s *)handle;
|
||||
struct nxsvrmsg_s *msg;
|
||||
struct nxbe_window_s *wnd;
|
||||
uint8_t buffer[NX_MXCLIMSGLEN];
|
||||
char buffer[NX_MXCLIMSGLEN];
|
||||
int nbytes;
|
||||
|
||||
/* Get the next message from our incoming message queue */
|
||||
|
|
Loading…
Reference in a new issue