Shorten argument name

This commit is contained in:
Johannes Marbach
2021-09-25 11:55:00 +02:00
parent 63dc04a23c
commit d19bc94bcc

View File

@@ -36,7 +36,7 @@
* *
* @param opts pointer to the options struct * @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. * Output usage instructions.
@@ -48,10 +48,10 @@ static void print_usage();
* Static functions * Static functions
*/ */
static void init_opts(ul_cli_opts *cli_opts) { static void init_opts(ul_cli_opts *opts) {
cli_opts->hor_res = -1; opts->hor_res = -1;
cli_opts->ver_res = -1; opts->ver_res = -1;
cli_opts->verbose = false; opts->verbose = false;
} }
static void print_usage() { static void print_usage() {