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
diff --git a/src/e1_recorder.c b/src/e1_recorder.c
index 333375d..7a93470 100644
--- a/src/e1_recorder.c
+++ b/src/e1_recorder.c
@@ -187,7 +187,7 @@
 
 	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();