hash: fix build with gcc 4.4 and 4.5
authorPablo de Lara <pablo.de.lara.guarch@intel.com>
Wed, 15 Jul 2015 12:40:42 +0000 (13:40 +0100)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Thu, 16 Jul 2015 14:48:51 +0000 (16:48 +0200)
commit6f71544ce28f09e9aae452954b3b72c448aad2ec
tree9dff29c692238302ec8c3246cccb118c4d2423ad
parent2a4103eba929e67e0f0eb9dc808da26377fe2665
hash: fix build with gcc 4.4 and 4.5

gcc 4.4 and 4.5 throws following error:
rte_cuckoo_hash.c:145: error: flexible array member in otherwise empty struct.

This is due to empty length in flexible array, which has been changed to use
size 0 in the declaration of the array.

Fixes: 48a399119619 ("hash: replace with cuckoo hash implementation")

Reported-by: Olga Shern <olgas@mellanox.com>
Signed-off-by: Pablo de Lara <pablo.de.lara.guarch@intel.com>
lib/librte_hash/rte_cuckoo_hash.c