sched/module/mod_modhandle.c: Fix a syslog format

This commit is contained in:
YAMAMOTO Takashi 2020-11-22 10:01:56 +09:00 committed by Xiang Xiao
parent ae45a66d70
commit d2d48a1b9b

View File

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