diff options
author | Angelo Mantellini <manangel@cisco.com> | 2019-02-08 15:11:57 +0100 |
---|---|---|
committer | Angelo Mantellini <manangel@cisco.com> | 2019-02-12 10:53:54 +0100 |
commit | f126f86da5acf088f24e97ecb32f9ba5a1789aa4 (patch) | |
tree | b81704d6048117cbe15a398a3f6f5d974d143d14 /lib/src/protocol/ipv4.c | |
parent | 3447d02974947d10440e4aa5627318c29be95c01 (diff) |
[HICN-44] Remove warnings libhicn (lib) on windows
Change-Id: I637e9c1e05de8a9e6743ea729b62d3eedd6ca54b
Signed-off-by: Angelo Mantellini <manangel@cisco.com>
Diffstat (limited to 'lib/src/protocol/ipv4.c')
-rw-r--r-- | lib/src/protocol/ipv4.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/src/protocol/ipv4.c b/lib/src/protocol/ipv4.c index 4e4c47f5b..97aafaeaf 100644 --- a/lib/src/protocol/ipv4.c +++ b/lib/src/protocol/ipv4.c @@ -383,7 +383,7 @@ ipv4_set_payload_length (hicn_type_t type, hicn_protocol_t * h, int rc = CHILD_OPS (get_header_length, type, h, &child_header_length); if (rc < 0) return rc; - h->ipv4.len = htons (payload_length + IPV4_HDRLEN + child_header_length); + h->ipv4.len = htons ((u_short) (payload_length + IPV4_HDRLEN + child_header_length)); return HICN_LIB_ERROR_NONE; } |