aboutsummaryrefslogtreecommitdiffstats
path: root/src/vnet/ip
diff options
context:
space:
mode:
authorDamjan Marion <damarion@cisco.com>2024-04-24 11:21:05 +0000
committerDave Wallace <dwallacelf@gmail.com>2024-04-24 14:33:34 +0000
commit804255c9f01c5a6a5d0b24db3923c814510f21bc (patch)
treefe135f73c51e8f71b1a8a499fcf2de55d2a5aed4 /src/vnet/ip
parent21c5ae36af25be125d156deed8492fc76a4b6616 (diff)
misc: fix int/enum mismatch errors reported by gcc-14
Type: fix Change-Id: I80e90cab8e2e9fef837779e36e0256baf791b801 Signed-off-by: Damjan Marion <damarion@cisco.com>
Diffstat (limited to 'src/vnet/ip')
-rw-r--r--src/vnet/ip/ip.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/vnet/ip/ip.c b/src/vnet/ip/ip.c
index d045c2f37c1..586f7dfbc85 100644
--- a/src/vnet/ip/ip.c
+++ b/src/vnet/ip/ip.c
@@ -201,7 +201,8 @@ ip_feature_enable_disable (ip_address_family_t af,
}
int
-ip_flow_hash_set (ip_address_family_t af, u32 table_id, u32 flow_hash_config)
+ip_flow_hash_set (ip_address_family_t af, u32 table_id,
+ flow_hash_config_t flow_hash_config)
{
fib_protocol_t fproto;
u32 fib_index;