From d19bc94bcc817b2182945227271b2e3c0524e02b Mon Sep 17 00:00:00 2001 From: Johannes Marbach Date: Sat, 25 Sep 2021 11:55:00 +0200 Subject: [PATCH] Shorten argument name --- command_line.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/command_line.c b/command_line.c index f7e7811..e47207a 100644 --- a/command_line.c +++ b/command_line.c @@ -36,7 +36,7 @@ * * @param opts pointer to the options struct */ -static void init_opts(ul_cli_opts *cli_opts); +static void init_opts(ul_cli_opts *opts); /** * Output usage instructions. @@ -48,10 +48,10 @@ static void print_usage(); * Static functions */ -static void init_opts(ul_cli_opts *cli_opts) { - cli_opts->hor_res = -1; - cli_opts->ver_res = -1; - cli_opts->verbose = false; +static void init_opts(ul_cli_opts *opts) { + opts->hor_res = -1; + opts->ver_res = -1; + opts->verbose = false; } static void print_usage() {