summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntonio Borneo <antonio.borneo@st.com>2017-06-01 17:51:41 +0000
committerandroid-build-merger <android-build-merger@google.com>2017-06-01 17:51:41 +0000
commit366678353ebfab38fd87f4056e974d5737418ae4 (patch)
treec44cf6953d40d1b062feecf03f0b525add51bdcb
parenta4006248d722c1c78aa706db558c93fc93e4e505 (diff)
parent4d0235a73bb2bf0176ade83ee764d89749770117 (diff)
downloadcontexthub-366678353ebfab38fd87f4056e974d5737418ae4.tar.gz
nanohub: bl: fix compile error for cvprintf() am: a08b384196 am: d3a5d54afd am: a5d2c4745b
am: 4d0235a73b Change-Id: Ibb75a65c44d2e7deb44f0c68d03af684c0ce0e06
-rw-r--r--firmware/os/core/bl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/os/core/bl.c b/firmware/os/core/bl.c
index 706a7492..23d7f5b5 100644
--- a/firmware/os/core/bl.c
+++ b/firmware/os/core/bl.c
@@ -110,7 +110,7 @@ void blLog(const char *str, ...)
va_list vl;
va_start(vl, str);
- cvprintf(blLogPutcharF, NULL, str, vl);
+ cvprintf(blLogPutcharF, 0, NULL, str, vl);
va_end(vl);
}