Skip to content
Snippets Groups Projects
Commit 743729a8 authored by patacongo's avatar patacongo
Browse files

Fix typos in debug output strings

git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@1358 42af7a65-404d-4744-a932-0658087f49c3
parent 94c66e24
No related branches found
No related tags found
No related merge requests found
......@@ -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;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment