diff options
author | Gabriel Ganne <gabriel.ganne@enea.com> | 2017-03-06 15:19:40 +0100 |
---|---|---|
committer | John Lo <loj@cisco.com> | 2017-03-07 21:34:44 +0000 |
commit | f7f2a9feaa2cad8313afba53b53c32f1928f664c (patch) | |
tree | b300924abe7e74595861102e279028046b263325 /src/scripts/vnet/l2fib | |
parent | 45e4f365086267ef2551b1dedf4e309bdd00a34a (diff) |
fix gcc 5.4 warning: argument to 'sizeof' in 'memcpy' call is the same expression as the destination
warning translates as an invalid write :
sizeof(u8* b_dmac) == 8 != sizeof(eth_hdr->dst_address) == 6
~/vpp/build-data/../src/vnet/l2/l2_vtr.c: In function 'l2pbb_get':
~/vpp/build-data/../src/vnet/l2/l2_vtr.c:734:63: error: argument to 'sizeof' in 'memcpy' call is the same expression as the destination;
did you mean to provide an explicit length? [-Werror=sizeof-pointer-memaccess]
~/vpp/build-data/../src/vnet/l2/l2_vtr.c:736:63: error: argument to 'sizeof' in 'memcpy' call is the same expression as the destination;
did you mean to provide an explicit length? [-Werror=sizeof-pointer-memaccess]
update l2pbb_get to take an ethernet header instead of two u8* pointers
for source and dest mac addresses.
Change-Id: Ifcf1319a9e22614d57682f940e10f0420dc6fb8c
Signed-off-by: Gabriel Ganne <gabriel.ganne@enea.com>
Diffstat (limited to 'src/scripts/vnet/l2fib')
0 files changed, 0 insertions, 0 deletions