From 849419150b48604cf4acf977461e0f0ae7de4ee1 Mon Sep 17 00:00:00 2001 From: Richard Fuchs Date: Wed, 24 Jan 2024 09:27:36 -0500 Subject: [PATCH] MT#59038 reformat string literal no-op Change-Id: Icd4169ab16c5626146408198b4aa15b596511132 --- daemon/cli.c | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/daemon/cli.c b/daemon/cli.c index de44cd388..2ddfcfe91 100644 --- a/daemon/cli.c +++ b/daemon/cli.c @@ -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");