graphics/nxmu: Correct a compile error introduced with last big set of changes.

This commit is contained in:
Gregory Nutt 2018-01-31 16:26:41 -06:00
parent 8191640320
commit 84b00e54d3

View File

@ -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;