Fix compilation

This commit is contained in:
mjentsch 2015-11-21 18:54:33 +01:00
parent e5e58d0c2f
commit 553b10dee5

View file

@ -222,7 +222,7 @@ static int tgp_msg_send_split (struct tgl_state *TLS, const char *message, tgl_p
if (end > size) {
end = size;
}
gchar *chunk = g_utf8_substringg (message, start, end);
gchar *chunk = g_utf8_substring (message, start, end);
tgp_msg_send_schedule (TLS, chunk, to);
start = end;
}