diff options
author | 2017-06-20 23:30:47 +0100 | |
---|---|---|
committer | 2017-06-20 23:33:30 +0100 | |
commit | 6e95f5eca55672bdd90aab6cdbb3b479985782f3 (patch) | |
tree | fe7e525f6b043176843404b98f92f87238dc8cee /lib | |
parent | 2c33ba7b74d4e61a29db34c650d96eef9134f6a7 (diff) |
libtle_l4p: fix both wl1 and wl2 should coexist inside union wui.
Change-Id: Ied0e976aa26f71dc4ccbf62deae9cd756ee4b82d
Signed-off-by: Konstantin Ananyev <konstantin.ananyev@intel.com>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libtle_l4p/tcp_misc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libtle_l4p/tcp_misc.h b/lib/libtle_l4p/tcp_misc.h index beb6699..9f19f69 100644 --- a/lib/libtle_l4p/tcp_misc.h +++ b/lib/libtle_l4p/tcp_misc.h @@ -193,7 +193,7 @@ struct resp_info { /* window update information (RFC 793 WL1, WL2) */ union wui { uint64_t raw; - union { + struct { uint32_t wl1; uint32_t wl2; }; |