Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/majn/telegram-purple.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormjentsch <mtthsjntsch@gmail.com>2015-12-09 03:21:09 +0300
committermjentsch <mtthsjntsch@gmail.com>2015-12-19 04:25:04 +0300
commitf2fd8a981b58d2c140e2a2292d881cbee1107375 (patch)
treefbe614222f485c602eeaf02738581618e4a5b7b3 /telegram-base.c
parent233e6c28111a6854be1902ad042aa47f5b5ae11e (diff)
coding style
Diffstat (limited to 'telegram-base.c')
-rw-r--r--telegram-base.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/telegram-base.c b/telegram-base.c
index 46bd29a..060f61b 100644
--- a/telegram-base.c
+++ b/telegram-base.c
@@ -469,8 +469,8 @@ void write_secret_chat_gw (struct tgl_state *TLS, void *extra, int success, stru
write_secret_chat_file (TLS);
}
-void tgp_create_group_chat_by_usernames (struct tgl_state *TLS, const char *title, const char **users, int num_users,
- int use_print_names) {
+void tgp_create_group_chat_by_usernames (struct tgl_state *TLS, const char *title, const char **users,
+ int num_users, int use_print_names) {
tgl_peer_id_t ids[num_users + 1];
int i, j = 0;
ids[j++] = TLS->our_id;
@@ -489,11 +489,11 @@ void tgp_create_group_chat_by_usernames (struct tgl_state *TLS, const char *titl
}
}
if (i > 0) {
- tgl_do_create_group_chat (TLS, j, ids, title, (int) strlen(title),
- tgp_notify_on_error_gw, g_strdup (title));
+ tgl_do_create_group_chat (TLS, j, ids, title, (int) strlen (title), tgp_notify_on_error_gw,
+ g_strdup (title));
} else {
- purple_notify_message (_telegram_protocol, PURPLE_NOTIFY_MSG_INFO, _("Couldn't create group"), _("Please select at least one other user."), NULL,
- NULL, NULL);
+ purple_notify_message (_telegram_protocol, PURPLE_NOTIFY_MSG_INFO, _("Couldn't create group"),
+ _("Please select at least one other user."), NULL, NULL, NULL);
}
}