1
0
Fork 0
forked from nuttx/nuttx-update

sched/module/mod_modhandle.c: Fix typo in debug statement.

This commit is contained in:
Alan Carvalho de Assis 2018-06-01 08:54:37 -06:00 committed by Gregory Nutt
parent 0923643d99
commit f3d940aac5

View file

@ -85,7 +85,7 @@ FAR void *modhandle(FAR const char *name)
modp = modlib_registry_find(name);
if (modp == NULL)
{
serr("ERROR: Failed to find module %s: %d\n", name, ret);
serr("ERROR: Failed to find module %s: %d\n", name, modp);
set_errno(ENOENT);
}