cosmetic: msc_main.c: default args definition style

Explicitly name each arg with its default value, omit zero values, end last
item in comma.

Change-Id: I0e0f1e2c8722768b6c61fd6544911b20fe1af212
This commit is contained in:
Neels Hofmeyr 2018-12-05 00:38:28 +01:00 committed by Harald Welte
parent 18333fa5a5
commit a2ed9b50c6
1 changed files with 3 additions and 5 deletions

View File

@ -96,11 +96,9 @@ static struct {
const char *mncc_sock_path;
int use_db_counter;
} msc_cmdline_config = {
"sms.db",
"osmo-msc.cfg",
0,
0,
1
.database_name = "sms.db",
.config_file = "osmo-msc.cfg",
.use_db_counter = 1,
};
/* timer to store statistics */