From d2d48a1b9ba644e01b4c49c04a8cefb6a0602245 Mon Sep 17 00:00:00 2001 From: YAMAMOTO Takashi Date: Sun, 22 Nov 2020 10:01:56 +0900 Subject: [PATCH] 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 a612d380ec..81a83f35ff 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); }