Fix a warning found in build testing.

This commit is contained in:
Gregory Nutt 2019-05-22 08:22:12 -06:00
parent dd35a7cacc
commit 7409dd57bb
2 changed files with 5 additions and 2 deletions

View File

@ -162,6 +162,8 @@ Issues:
menu just as any other region of the background. This would be easy
to fix, but just replacing the background image widget and drawing
directly on the background which is the better solution anyway.
NOTE: There is a configuration option that will eliminate the background
image. The CONTEMPORARY theme, for example, has no background image.
7. There are a few color artifacts in the toolbar of the CONTEMPORARY
theme. These look like borders are being drawn around the toolbar
widgets (even though the are configured to be borderless).

View File

@ -90,7 +90,7 @@ static int nsh_telnetmain(int argc, char *argv[])
DEBUGASSERT(pstate != NULL);
vtbl = &pstate->cn_vtbl;
_info("Session [%d] Started\n", getpid());
ninfo("Session [%d] Started\n", getpid());
#ifdef CONFIG_NSH_TELNET_LOGIN
/* Login User and Password Check */
@ -207,6 +207,7 @@ static int nsh_telnetmain(int argc, char *argv[])
/* We do not get here, but this is necessary to keep some compilers happy */
UNUSED(ret);
return OK;
}
@ -272,7 +273,7 @@ int nsh_telnetstart(sa_family_t family)
/* Start the telnet daemon */
_info("Starting the Telnet daemon\n");
ninfo("Starting the Telnet daemon\n");
ret = telnetd_start(&config);
if (ret < 0)