Rename err() to _err()

This commit is contained in:
Gregory Nutt
2016-06-16 11:44:22 -06:00
parent a63d306549
commit cc03ecefc8
12 changed files with 75 additions and 74 deletions

View File

@@ -183,7 +183,7 @@ static ssize_t nsh_consolewrite(FAR struct nsh_vtbl_s *vtbl,
ret = fwrite(buffer, 1, nbytes, pstate->cn_outstream);
if (ret < 0)
{
err("ERROR: [%d] Failed to send buffer: %d\n",
_err("ERROR: [%d] Failed to send buffer: %d\n",
pstate->cn_outfd, errno);
}
return ret;