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
1 changed files with 1 additions and 1 deletions

View File

@ -85,7 +85,7 @@ FAR void *modhandle(FAR const char *name)
modp = modlib_registry_find(name);
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);
}