Avoid a couple compilation warnings

This commit is contained in:
Pierre Pronchery 2018-02-12 13:19:55 +01:00
parent 69af2d54b9
commit 54a1378bad

View File

@ -54,7 +54,7 @@
/* on_closex */
gboolean on_closex(gpointer data)
{
Mailer * mailer = data;
(void) data;
/* FIXME may be composing or viewing messages */
gtk_main_quit();
@ -223,6 +223,8 @@ void on_edit_unselect_all(gpointer data)
/* on_help_contents */
void on_help_contents(gpointer data)
{
(void) data;
desktop_help_contents(PACKAGE, PROGNAME_MAILER);
}