mirror of
https://github.com/apache/nuttx.git
synced 2026-05-18 00:34:10 +08:00
graphics/nxmu: Correct a compile error introduced with last big set of changes.
This commit is contained in:
@@ -190,8 +190,9 @@ int nx_start(void)
|
||||
CONFIG_NXSTART_SERVERSTACK, nx_server, NULL);
|
||||
if (server < 0)
|
||||
{
|
||||
gerr("ERROR: Failed to create nx_server kernel thread: %d\n", ret);
|
||||
return ret;
|
||||
gerr("ERROR: Failed to create nx_server kernel thread: %d\n",
|
||||
(int)server);
|
||||
return (int)server;
|
||||
}
|
||||
|
||||
g_nxserver_started = true;
|
||||
|
||||
Reference in New Issue
Block a user