This is an automated email from the ASF dual-hosted git repository. xiaoxiang pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git
commit d2d48a1b9ba644e01b4c49c04a8cefb6a0602245 Author: YAMAMOTO Takashi <yamam...@midokura.com> AuthorDate: Sun Nov 22 10:01:56 2020 +0900 sched/module/mod_modhandle.c: Fix a syslog format --- sched/module/mod_modhandle.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sched/module/mod_modhandle.c b/sched/module/mod_modhandle.c index a612d38..81a83f3 100644 --- a/sched/module/mod_modhandle.c +++ b/sched/module/mod_modhandle.c @@ -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); }