modsym: Fix a printf format for berr

This commit is contained in:
YAMAMOTO Takashi 2020-04-13 23:39:51 +09:00 committed by Abdelatif Guettouche
parent 12ff2212f5
commit 30f7ec7049

View File

@ -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;
}