aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--.clang-format2
-rw-r--r--td/telegram/cli.cpp3
2 files changed, 3 insertions, 2 deletions
diff --git a/.clang-format b/.clang-format
index 78d519b55..6ce3c0d61 100644
--- a/.clang-format
+++ b/.clang-format
@@ -92,7 +92,7 @@ PenaltyBreakString: 1000
PenaltyBreakTemplateDeclaration: 10
PenaltyExcessCharacter: 1000000
PenaltyReturnTypeOnItsOwnLine: 200
-PointerAlignment: Left
+PointerAlignment: Right
ReflowComments: false # true
SortIncludes: false # disabled, because we need case insensitive sort
SortUsingDeclarations: false # true
diff --git a/td/telegram/cli.cpp b/td/telegram/cli.cpp
index 4a48c12dd..cdd347f4b 100644
--- a/td/telegram/cli.cpp
+++ b/td/telegram/cli.cpp
@@ -2845,7 +2845,8 @@ class CliClient final : public Actor {
fingerprints.push_back(td_api::make_object<td_api::groupCallPayloadFingerprint>("h2", "s2", "fingerprint2"));
send_request(td_api::make_object<td_api::joinGroupCall>(
as_group_call_id(args),
- td_api::make_object<td_api::groupCallPayload>("ufrag", "pwd", std::move(fingerprints)), group_call_source_, true));
+ td_api::make_object<td_api::groupCallPayload>("ufrag", "pwd", std::move(fingerprints)), group_call_source_,
+ true));
} else if (op == "jgcc") {
send_request(td_api::make_object<td_api::joinGroupCall>(as_group_call_id(args), nullptr, 0, true));
} else if (op == "tgcmnp" || op == "tgcmnpe") {