Fix a warning found in build testing.
This commit is contained in:
parent
dd35a7cacc
commit
7409dd57bb
@ -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).
|
||||
|
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user