From 491f369b6b868667e774da3d75735332712292cc Mon Sep 17 00:00:00 2001 From: Paul Date: Wed, 16 Jul 2014 15:49:16 +0100 Subject: [PATCH] make the compiler be quiet. patch by Christian Hesse --- src/gtk/headers.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/gtk/headers.h b/src/gtk/headers.h index c16c9c39d..0a4c2e10e 100644 --- a/src/gtk/headers.h +++ b/src/gtk/headers.h @@ -2,8 +2,9 @@ static struct { const gchar *header_name; const gchar *header_name_w_colon; -} HEADERS[] = { - +/* Compiler thinks this is unused. State so and make it shut up. + * We do need this for header translations. */ +} HEADERS[] __attribute__((unused)) = { /* RFC2822 */ { N_("Date"), N_("Date:") }, { N_("From"), N_("From:") }, -- 2.25.1