diff options
author | Elliott Sales de Andrade <quantum.analyst@gmail.com> | 2023-04-30 17:42:35 -0500 |
---|---|---|
committer | Elliott Sales de Andrade <quantum.analyst@gmail.com> | 2023-04-30 17:42:35 -0500 |
commit | ff0c453f01c96f89d249e6717b243667d6940604 (patch) | |
tree | a2a2e89c4cad1a9cec6de3d4d07d26e913c7ec94 /pidgin | |
parent | e2af3524445d4c375d4d09ea89f7460fbea4ad5e (diff) | |
download | pidgin-master.tar.gz |
It was added in GLib 2.58
Testing Done:
Compiled only.
Reviewed at https://reviews.imfreedom.org/r/2446/
Diffstat (limited to 'pidgin')
-rw-r--r-- | pidgin/gtkmedia.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pidgin/gtkmedia.c b/pidgin/gtkmedia.c index 9630f93564..e088286480 100644 --- a/pidgin/gtkmedia.c +++ b/pidgin/gtkmedia.c @@ -769,7 +769,7 @@ pidgin_media_ready_cb(PurpleMedia *media, PidginMedia *gtkmedia, const gchar *si g_clear_handle_id(>kmedia->priv->timeout_id, g_source_remove); gtkmedia->priv->request_type |= type; gtkmedia->priv->timeout_id = g_timeout_add(500, - (GSourceFunc)pidgin_request_timeout_cb, + G_SOURCE_FUNC(pidgin_request_timeout_cb), gtkmedia); } |