aboutsummaryrefslogtreecommitdiffstats
path: root/src/utils
diff options
context:
space:
mode:
authorJouni Malinen <j@w1.fi>2012-04-28 18:30:12 +0300
committerJouni Malinen <j@w1.fi>2012-04-28 18:30:12 +0300
commite09e61c2c131c623015903d7af756378aa775da3 (patch)
tree63aae53d947f47bb0d2cec5e141e28eacadf4aae /src/utils
parentd2118814747df4bff878b18f9dc93c8f626ce082 (diff)
downloadexternal_wpa_supplicant_8_ti-e09e61c2c131c623015903d7af756378aa775da3.zip
external_wpa_supplicant_8_ti-e09e61c2c131c623015903d7af756378aa775da3.tar.gz
external_wpa_supplicant_8_ti-e09e61c2c131c623015903d7af756378aa775da3.tar.bz2
Fix compiler warning on printf format with size_t
Signed-hostap: Jouni Malinen <j@w1.fi>
Diffstat (limited to 'src/utils')
-rw-r--r--src/utils/wpa_debug.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils/wpa_debug.c b/src/utils/wpa_debug.c
index 3b71d10..5511ef1 100644
--- a/src/utils/wpa_debug.c
+++ b/src/utils/wpa_debug.c
@@ -338,7 +338,7 @@ static void _wpa_hexdump(int level, const char *title, const u8 *buf,
}
syslog(syslog_priority(level), "%s - hexdump(len=%lu):%s",
- title, len, display);
+ title, (unsigned long) len, display);
os_free(strbuf);
return;
}