Module Name: src
Committed By: christos
Date: Sun Oct 6 18:56:08 UTC 2024
Modified Files:
src/external/bsd/wpa/dist/wpa_supplicant: events.c
Log Message:
fix formatting string.
To generate a diff of this commit:
cvs rdiff -u -r1.10 -r1.11 src/external/bsd/wpa/dist/wpa_supplicant/events.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/external/bsd/wpa/dist/wpa_supplicant/events.c
diff -u src/external/bsd/wpa/dist/wpa_supplicant/events.c:1.10 src/external/bsd/wpa/dist/wpa_supplicant/events.c:1.11
--- src/external/bsd/wpa/dist/wpa_supplicant/events.c:1.10 Wed Sep 18 11:09:33 2024
+++ src/external/bsd/wpa/dist/wpa_supplicant/events.c Sun Oct 6 14:56:08 2024
@@ -6129,8 +6129,8 @@ void wpa_supplicant_event(void *ctx, enu
wpa_s->scan_start_time.sec = 0;
wpa_s->scan_start_time.usec = 0;
wpa_s->wps_scan_done = true;
- wpa_dbg(wpa_s, MSG_DEBUG, "Scan completed in %ld.%06ld seconds",
- diff.sec, diff.usec);
+ wpa_dbg(wpa_s, MSG_DEBUG, "Scan completed in %jd.%06ld seconds",
+ (intmax_t)diff.sec, (long)diff.usec);
}
if (wpa_supplicant_event_scan_results(wpa_s, data))
break; /* interface may have been removed */