diff options
author | Rocco Rutte <pdmef@gmx.net> | 2009-03-17 20:04:56 +0100 |
---|---|---|
committer | Rocco Rutte <pdmef@gmx.net> | 2009-03-17 20:04:56 +0100 |
commit | a62588cbded5d94b0892ac1ff8236c2186aa3d23 (patch) | |
tree | fdb88223f9b5f07557f821eb86ef80a1e5c1a22e /compose.c | |
parent | 28c3000c7a077146729bcb92335e1218ecf932d6 (diff) |
Fix some warnings with -W about missing initializers in structs
Diffstat (limited to 'compose.c')
-rw-r--r-- | compose.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -94,7 +94,7 @@ static struct mapping_t ComposeHelp[] = { { N_("Attach file"), OP_COMPOSE_ATTACH_FILE }, { N_("Descrip"), OP_COMPOSE_EDIT_DESCRIPTION }, { N_("Help"), OP_HELP }, - { NULL } + { NULL, 0 } }; static void snd_entry (char *b, size_t blen, MUTTMENU *menu, int num) |