24 lines
1.1 KiB
Diff
24 lines
1.1 KiB
Diff
From 796a67b903fb4a1dc47de4aa981af4bc2f88df65 Mon Sep 17 00:00:00 2001
|
|
From: nyyu <mail@nyyu.dev>
|
|
Date: Sat, 24 Sep 2022 12:41:39 +0200
|
|
Subject: [PATCH] qcwcn: fix build error format msg
|
|
|
|
Change-Id: Ie99ff98324d2aefde585c7d3d8b603c6e725e78f
|
|
---
|
|
qcwcn/wpa_supplicant_8_lib/driver_cmd_nl80211.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/qcwcn/wpa_supplicant_8_lib/driver_cmd_nl80211.c b/qcwcn/wpa_supplicant_8_lib/driver_cmd_nl80211.c
|
|
index 9656710..e89a741 100644
|
|
--- a/qcwcn/wpa_supplicant_8_lib/driver_cmd_nl80211.c
|
|
+++ b/qcwcn/wpa_supplicant_8_lib/driver_cmd_nl80211.c
|
|
@@ -2739,7 +2739,7 @@ void print_setup_cmd_values(struct twt_setup_parameters *twt_setup_params)
|
|
twt_setup_params->min_wake_duration);
|
|
wpa_printf(MSG_DEBUG, "TWT: max wake duration: %d ",
|
|
twt_setup_params->max_wake_duration);
|
|
- wpa_printf(MSG_DEBUG, "TWT: wake tsf: 0x%lx ",
|
|
+ wpa_printf(MSG_DEBUG, "TWT: wake tsf: 0x%llx ",
|
|
twt_setup_params->wake_tsf);
|
|
wpa_printf(MSG_DEBUG, "TWT: announce timeout(in us): %u",
|
|
twt_setup_params->announce_timeout_us);
|