mirror of
https://github.com/apache/nuttx.git
synced 2025-01-13 08:38:38 +08:00
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
2 changed files with 4 additions and 4 deletions
|
@ -197,7 +197,7 @@ static inline int nxmu_setup(FAR const char *mqname,
|
|||
ret = nxbe_fbconfigure(fb, &fe->be);
|
||||
if (ret < 0)
|
||||
{
|
||||
gdbg("nxs_fbconfigure failed: %d\n", -ret);
|
||||
gdbg("nxbe_fbconfigure failed: %d\n", -ret);
|
||||
errno = -ret;
|
||||
return ERROR;
|
||||
}
|
||||
|
@ -206,7 +206,7 @@ static inline int nxmu_setup(FAR const char *mqname,
|
|||
ret = nxbe_colormap(fb);
|
||||
if (ret < 0)
|
||||
{
|
||||
gdbg("nx_colormap failed: %d\n", -ret);
|
||||
gdbg("nxbe_colormap failed: %d\n", -ret);
|
||||
errno = -ret;
|
||||
return ERROR;
|
||||
}
|
||||
|
|
|
@ -116,7 +116,7 @@ static inline int nxsu_setup(FAR struct fb_vtable_s *fb,
|
|||
ret = nxbe_fbconfigure(fb, &fe->be);
|
||||
if (ret < 0)
|
||||
{
|
||||
gdbg("nxs_fbconfigure failed: %d\n", -ret);
|
||||
gdbg("nxbe_fbconfigure failed: %d\n", -ret);
|
||||
errno = -ret;
|
||||
return ERROR;
|
||||
}
|
||||
|
@ -125,7 +125,7 @@ static inline int nxsu_setup(FAR struct fb_vtable_s *fb,
|
|||
ret = nxbe_colormap(fb);
|
||||
if (ret < 0)
|
||||
{
|
||||
gdbg("nx_colormap failed: %d\n", -ret);
|
||||
gdbg("nxbe_colormap failed: %d\n", -ret);
|
||||
errno = -ret;
|
||||
return ERROR;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue