29/01/2018 17:37, Harry van Haaren:
> @@ -79,6 +80,10 @@ rte_exit(int exit_code, const char *format, ...)
>       va_end(ap);
>  
>  #ifndef RTE_EAL_ALWAYS_PANIC_ON_ERROR
> +     int ret = rte_eal_cleanup();

You should not declare a variable in the middle of the function.
Will fix on apply.

> +     if (ret)
> +             RTE_LOG(CRIT, EAL,
> +                     "EAL could not release all resources, code %d\n", ret);
>       exit(exit_code);
>  #else
>       rte_dump_stack();


Reply via email to