Fix typos in debug output strings
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@1358 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
parent
94c66e2480
commit
743729a86a
@ -197,7 +197,7 @@ static inline int nxmu_setup(FAR const char *mqname,
|
|||||||
ret = nxbe_fbconfigure(fb, &fe->be);
|
ret = nxbe_fbconfigure(fb, &fe->be);
|
||||||
if (ret < 0)
|
if (ret < 0)
|
||||||
{
|
{
|
||||||
gdbg("nxs_fbconfigure failed: %d\n", -ret);
|
gdbg("nxbe_fbconfigure failed: %d\n", -ret);
|
||||||
errno = -ret;
|
errno = -ret;
|
||||||
return ERROR;
|
return ERROR;
|
||||||
}
|
}
|
||||||
@ -206,7 +206,7 @@ static inline int nxmu_setup(FAR const char *mqname,
|
|||||||
ret = nxbe_colormap(fb);
|
ret = nxbe_colormap(fb);
|
||||||
if (ret < 0)
|
if (ret < 0)
|
||||||
{
|
{
|
||||||
gdbg("nx_colormap failed: %d\n", -ret);
|
gdbg("nxbe_colormap failed: %d\n", -ret);
|
||||||
errno = -ret;
|
errno = -ret;
|
||||||
return ERROR;
|
return ERROR;
|
||||||
}
|
}
|
||||||
|
@ -116,7 +116,7 @@ static inline int nxsu_setup(FAR struct fb_vtable_s *fb,
|
|||||||
ret = nxbe_fbconfigure(fb, &fe->be);
|
ret = nxbe_fbconfigure(fb, &fe->be);
|
||||||
if (ret < 0)
|
if (ret < 0)
|
||||||
{
|
{
|
||||||
gdbg("nxs_fbconfigure failed: %d\n", -ret);
|
gdbg("nxbe_fbconfigure failed: %d\n", -ret);
|
||||||
errno = -ret;
|
errno = -ret;
|
||||||
return ERROR;
|
return ERROR;
|
||||||
}
|
}
|
||||||
@ -125,7 +125,7 @@ static inline int nxsu_setup(FAR struct fb_vtable_s *fb,
|
|||||||
ret = nxbe_colormap(fb);
|
ret = nxbe_colormap(fb);
|
||||||
if (ret < 0)
|
if (ret < 0)
|
||||||
{
|
{
|
||||||
gdbg("nx_colormap failed: %d\n", -ret);
|
gdbg("nxbe_colormap failed: %d\n", -ret);
|
||||||
errno = -ret;
|
errno = -ret;
|
||||||
return ERROR;
|
return ERROR;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user