From 30f7ec70497da5187992a426e29f65fd66d4a2f7 Mon Sep 17 00:00:00 2001 From: YAMAMOTO Takashi Date: Mon, 13 Apr 2020 23:39:51 +0900 Subject: [PATCH] modsym: Fix a printf format for berr --- sched/module/mod_modsym.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sched/module/mod_modsym.c b/sched/module/mod_modsym.c index 8ec196343f..ec0b7c4b14 100644 --- a/sched/module/mod_modsym.c +++ b/sched/module/mod_modsym.c @@ -113,7 +113,7 @@ FAR const void *modsym(FAR void *handle, FAR const char *name) modp->modinfo.nexports); if (symbol == NULL) { - berr("ERROR: Failed to find symbol in symbol \"$s\" in table\n", name); + berr("ERROR: Failed to find symbol in symbol \"%s\" in table\n", name); err = ENOENT; goto errout_with_lock; }