aboutsummaryrefslogtreecommitdiffstats
path: root/src/utils
diff options
context:
space:
mode:
authorJouni Malinen <j@w1.fi>2011-11-18 21:43:43 +0200
committerJouni Malinen <j@w1.fi>2011-11-18 21:43:43 +0200
commitda4419c6db16d38d51767a213f43915cfd8d88a8 (patch)
treee133ae4420988e8a91d0aa273dfac070cf548ddb /src/utils
parent0c7addc32cc40ae29a6f59a9849b1210f98dc143 (diff)
downloadexternal_wpa_supplicant_8_ti-da4419c6db16d38d51767a213f43915cfd8d88a8.zip
external_wpa_supplicant_8_ti-da4419c6db16d38d51767a213f43915cfd8d88a8.tar.gz
external_wpa_supplicant_8_ti-da4419c6db16d38d51767a213f43915cfd8d88a8.tar.bz2
Include list.h after trace.h to avoid offsetof refinition
trace.h may end up including system header files that define offsetof, so include the compatibility definition from list.h only after this. Signed-hostap: Jouni Malinen <j@w1.fi>
Diffstat (limited to 'src/utils')
-rw-r--r--src/utils/os_unix.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils/os_unix.c b/src/utils/os_unix.c
index def202b..cadcb8d 100644
--- a/src/utils/os_unix.c
+++ b/src/utils/os_unix.c
@@ -27,9 +27,9 @@
#ifdef WPA_TRACE
#include "common.h"
-#include "list.h"
#include "wpa_debug.h"
#include "trace.h"
+#include "list.h"
static struct dl_list alloc_list;