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:
patacongo 2008-11-30 16:37:48 +00:00
parent 94c66e2480
commit 743729a86a
2 changed files with 4 additions and 4 deletions

View file

@ -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;
}

View file

@ -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;
}