diff options
Diffstat (limited to 'plugins/attachment-reminder')
-rw-r--r-- | plugins/attachment-reminder/ChangeLog | 5 | ||||
-rw-r--r-- | plugins/attachment-reminder/attachment-reminder.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/plugins/attachment-reminder/ChangeLog b/plugins/attachment-reminder/ChangeLog index a8cdf93a9f..221d27e612 100644 --- a/plugins/attachment-reminder/ChangeLog +++ b/plugins/attachment-reminder/ChangeLog @@ -1,3 +1,8 @@ +2008-02-03 Matthew Barnes <mbarnes@redhat.com> + + * attachment-reminder.c (org_gnome_evolution_attachment_reminder): + Fix a compiler warning. + 2008-01-24 Johnny Jacob <jjohnny@novell.com> ** Fixes bug #503327 & #503678 diff --git a/plugins/attachment-reminder/attachment-reminder.c b/plugins/attachment-reminder/attachment-reminder.c index b50fc5b9dc..968815bf0f 100644 --- a/plugins/attachment-reminder/attachment-reminder.c +++ b/plugins/attachment-reminder/attachment-reminder.c @@ -112,7 +112,7 @@ org_gnome_evolution_attachment_reminder (EPlugin *ep, EMEventTargetComposer *t) raw_msg_barray = g_byte_array_append (raw_msg_barray, (const guint8 *)"", 1); - filtered_str = strip_text_msg (raw_msg_barray->data); + filtered_str = strip_text_msg ((gchar *) raw_msg_barray->data); g_byte_array_free (raw_msg_barray, TRUE); /* Set presend_check_status for the composer*/ |