On Tue, 5 Oct 2021 23:15:45 +0300 Dmitry Kozlyuk <[email protected]> wrote:
> +++ b/app/test/test_cmdline_lib.c
> @@ -83,18 +83,19 @@ test_cmdline_parse_fns(void)
> static int
> test_cmdline_rdline_fns(void)
> {
> - struct rdline rdl;
> + struct rdline *rdl = NULL;
Very minor nit. The variable does not need to be initialized
since first statement assigns the value.

