Browse Source

MT#59038 reformat string literal

no-op

Change-Id: Icd4169ab16c5626146408198b4aa15b596511132
pull/1802/head
Richard Fuchs 2 years ago
parent
commit
849419150b
1 changed files with 10 additions and 2 deletions
  1. +10
    -2
      daemon/cli.c

+ 10
- 2
daemon/cli.c View File

@ -606,8 +606,16 @@ static void cli_list_call_info(struct cli_writer *cw, call_t *c) {
struct call_monologue *ml;
cw->cw_printf(cw,
"\ncallid: %s\ndeletionmark: %s\ncreated: %i\nproxy: %s\ntos: %u\nlast_signal: %llu\n"
"redis_keyspace: %i\nforeign: %s\n\n",
"\n"
"callid: %s\n"
"deletionmark: %s\n"
"created: %i\n"
"proxy: %s\n"
"tos: %u\n"
"last_signal: %llu\n"
"redis_keyspace: %i\n"
"foreign: %s\n"
"\n",
c->callid.s, c->ml_deleted ? "yes" : "no", (int) c->created.tv_sec, c->created_from,
(unsigned int) c->tos, (unsigned long long) c->last_signal, c->redis_hosted_db,
IS_FOREIGN_CALL(c) ? "yes" : "no");


Loading…
Cancel
Save