Fixes mostly related to touchscreen on Shenzhou board (still does not work)

git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5196 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
patacongo 2012-09-27 01:26:47 +00:00
parent 5354e2d637
commit 9caa2a5828
2 changed files with 2 additions and 2 deletions

View File

@ -214,7 +214,7 @@ bool CNxServer::connect(void)
// Start the server task
gvdbg("NxServer::connect: Starting server task\n");
gvdbg("CNxServer::connect: Starting server task\n");
serverId = TASK_CREATE("NX Server", CONFIG_NXWIDGETS_SERVERPRIO,
CONFIG_NXWIDGETS_SERVERSTACK, server, (FAR const char **)0);
if (serverId < 0)

View File

@ -656,7 +656,7 @@ int64_t CHexCalculator::evaluateBinaryOperation(uint8_t operation, int64_t value
return value1 + value2;
default:
gdbg("ERROR: Unexpected pending operation %d\n", m_pending);
gdbg("ERROR: Unexpected pending operation %d\n", operation);
return 0;
}
}