Fix use of logging_vty_add_cmds(void) API function.

This function never accepted any arguments.  However, a sloppy
declaration in the header file as logging_vty_add_cmds() allowed
to pass any number of any type arguments until recently.

Change-Id: Icdbe2f253c9e17ff82bd3b1dc3d4fbea4ad6f333
This commit is contained in:
Harald Welte 2022-11-06 10:29:41 +01:00
parent be5f2c7d81
commit b9c7fd8f79
1 changed files with 1 additions and 1 deletions

View File

@ -187,7 +187,7 @@ int main(int argc, char **argv)
osmo_init_logging2(rec_tall_ctx, &info);
vty_init(&vty_info);
logging_vty_add_cmds(&info);
logging_vty_add_cmds();
osmo_signal_register_handler(SS_L_INPUT, inp_sig_cb, NULL);
libosmo_abis_init(rec_tall_ctx);
e1inp_vty_init();