aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
Diffstat (limited to 'plugins')
-rw-r--r--plugins/mail-notification/mail-notification.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/mail-notification/mail-notification.c b/plugins/mail-notification/mail-notification.c
index 9bc8458eb4..c42473acc7 100644
--- a/plugins/mail-notification/mail-notification.c
+++ b/plugins/mail-notification/mail-notification.c
@@ -466,7 +466,7 @@ can_support_actions (void)
caps = notify_get_server_caps ();
if (caps != NULL) {
for (c = caps; c != NULL; c = c->next) {
- if (strcmp ((char*)c->data, "actions") == 0) {
+ if (strcmp ((gchar *)c->data, "actions") == 0) {
supports_actions = TRUE;
break;
}
@@ -531,7 +531,7 @@ new_notify_status (EMEventTargetFolder *t)
notify_notification_set_timeout (notify, NOTIFY_EXPIRES_DEFAULT);
notify_notification_add_action(notify, "default", "Default", notifyActionCallback, NULL, NULL);
g_timeout_add (500, notification_callback, notify);
- }
+ }
}
}
#endif