diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/vnet/tcp/tcp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vnet/tcp/tcp.c b/src/vnet/tcp/tcp.c index 3b94420e639..327703327aa 100644 --- a/src/vnet/tcp/tcp.c +++ b/src/vnet/tcp/tcp.c @@ -1578,7 +1578,7 @@ VLIB_INIT_FUNCTION (tcp_init); uword unformat_tcp_cc_algo (unformat_input_t * input, va_list * va) { - uword *result = va_arg (*va, uword *); + tcp_cc_algorithm_type_e *result = va_arg (*va, tcp_cc_algorithm_type_e *); tcp_main_t *tm = &tcp_main; char *cc_algo_name; u8 found = 0; |