drivers/wireless/ieee80211/bcm43xxx/bcmf_bdc.c: Fix a syslog format

This commit is contained in:
YAMAMOTO Takashi 2020-12-04 22:18:53 +09:00 committed by Xiang Xiao
parent 7d5259c767
commit b7358e9542

View File

@ -42,6 +42,7 @@
#include <debug.h>
#include <errno.h>
#include <inttypes.h>
#include <string.h>
#include <net/ethernet.h>
@ -167,7 +168,7 @@ int bcmf_bdc_process_event_frame(FAR struct bcmf_dev_s *priv,
if (event_id >= BCMF_EVENT_COUNT)
{
wlinfo("Invalid event id %d\n", event_id);
wlinfo("Invalid event id %" PRId32 "\n", event_id);
return -EINVAL;
}