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 8ca0732de560c188eae4da89cada4d24e198a319 Author: YAMAMOTO Takashi <yamam...@midokura.com> AuthorDate: Fri Nov 27 14:19:40 2020 +0900 audio/audio.c: Fix a syslog format --- audio/audio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/audio/audio.c b/audio/audio.c index d3e928a..643c08c 100644 --- a/audio/audio.c +++ b/audio/audio.c @@ -241,7 +241,7 @@ static int audio_close(FAR struct file *filep) /* Disable the Audio device */ DEBUGASSERT(lower->ops->shutdown != NULL); - audinfo("calling shutdown: %d\n"); + audinfo("calling shutdown\n"); lower->ops->shutdown(lower); }