runtime: fix log formatting

This commit is contained in:
Sebastien Bourdeauducq 2015-06-28 17:29:52 +02:00
parent 85c5b157a0
commit b6310b72db
1 changed files with 1 additions and 1 deletions

View File

@ -542,7 +542,7 @@ static int process_kmsg(struct msg_base *umsg)
case MESSAGE_TYPE_LOG: {
struct msg_log *msg = (struct msg_log *)umsg;
log(msg->fmt, msg->args);
log_va(msg->fmt, msg->args);
mailbox_acknowledge();
break;
}