]> granicus.if.org Git - neomutt/commitdiff
Fix some warnings with -W about missing initializers in structs
authorRocco Rutte <pdmef@gmx.net>
Tue, 17 Mar 2009 19:04:56 +0000 (20:04 +0100)
committerRocco Rutte <pdmef@gmx.net>
Tue, 17 Mar 2009 19:04:56 +0000 (20:04 +0100)
12 files changed:
addrbook.c
browser.c
compose.c
curs_main.c
imap/auth.c
mx.c
pattern.c
pop_auth.c
postpone.c
query.c
recvattach.c
remailer.c

index a6a0326ee9bc584e29ba7cd6d550fb336df58eee..7d82cf5782836d168527fc95fdc0ee1169dac7ab 100644 (file)
@@ -39,7 +39,7 @@ static struct mapping_t AliasHelp[] = {
   { N_("Undel"),  OP_UNDELETE },
   { N_("Select"), OP_GENERIC_SELECT_ENTRY },
   { N_("Help"),   OP_HELP },
-  { NULL }
+  { NULL,        0 }
 };
 
 static const char *
index e9c6390ae3f024c2b83951f90f99da217fc40686..2214984bacfb79e7e34b2d56c9fed5751ba4086e 100644 (file)
--- a/browser.c
+++ b/browser.c
@@ -46,7 +46,7 @@ static struct mapping_t FolderHelp[] = {
   { N_("Chdir"), OP_CHANGE_DIRECTORY },
   { N_("Mask"),  OP_ENTER_MASK },
   { N_("Help"),  OP_HELP },
-  { NULL }
+  { NULL,       0 }
 };
 
 typedef struct folder_t
index d500f07e02a58bb9d6a016eaf89e7ade1f763cca..5db4c92efb7a558aa6f2026d4b07e3d8765f779a 100644 (file)
--- a/compose.c
+++ b/compose.c
@@ -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)
index cf8cd9dc24047860de72672405571b18c8236b18..b898298a19b0b1a8630c77296248c7b955589a13 100644 (file)
@@ -410,7 +410,7 @@ static struct mapping_t IndexHelp[] = {
   { N_("Reply"), OP_REPLY },
   { N_("Group"), OP_GROUP_REPLY },
   { N_("Help"),  OP_HELP },
-  { NULL }
+  { NULL,       0 }
 };
 
 /* This function handles the message index window as well as commands returned
index c61237d92d217a8390fb1473bde7dbf446f829af..6ac2925174dda431b96d990cd0ad92cc170ecd3a 100644 (file)
@@ -43,7 +43,7 @@ static imap_auth_t imap_authenticators[] = {
 #endif
   { imap_auth_login, "login" },
 
-  { NULL }
+  { NULL, NULL }
 };
 
 /* imap_authenticate: Attempt to authenticate using either user-specified
diff --git a/mx.c b/mx.c
index d1355769ee33c2bcc84e04a3fe713e5abc1ab04c..1aa49051d779df5ee60a7bf16ee9ee2badcc1842 100644 (file)
--- a/mx.c
+++ b/mx.c
@@ -251,7 +251,7 @@ int mx_lock_file (const char *path, int fd, int excl, int dot, int timeout)
 int mx_unlock_file (const char *path, int fd, int dot)
 {
 #ifdef USE_FCNTL
-  struct flock unlockit = { F_UNLCK, 0, 0, 0 };
+  struct flock unlockit = { F_UNLCK, 0, 0, 0, 0 };
 
   memset (&unlockit, 0, sizeof (struct flock));
   unlockit.l_type = F_UNLCK;
index e693c02f6f31961fc307aa73aefb254a12e9eb45..22ff36911b747c7a53e64718a31a6c1d2d0291f3 100644 (file)
--- a/pattern.c
+++ b/pattern.c
@@ -97,7 +97,7 @@ Flags[] =
   { 'z', M_SIZE,               0,              eat_range },
   { '=', M_DUPLICATED,         0,              NULL },
   { '$', M_UNREFERENCED,       0,              NULL },
-  { 0 }
+  { 0,   0,                    0,              NULL }
 };
 
 static pattern_t *SearchPattern = NULL; /* current search pattern */
index 9971996625490c509920335bd35648f88c94ab5c..d2873d436b4b585584d762a1919cc84f5298b024 100644 (file)
@@ -283,7 +283,7 @@ static pop_auth_t pop_authenticators[] = {
 #endif
   { pop_auth_apop, "apop" },
   { pop_auth_user, "user" },
-  { NULL }
+  { NULL,         NULL }
 };
 
 /*
index dae6964421d3e937ad87365217a180d72f6836bb..e826ffa31236c6e3b6c366c3d84a2922f7bcc369 100644 (file)
@@ -42,7 +42,7 @@ static struct mapping_t PostponeHelp[] = {
   { N_("Del"),   OP_DELETE },
   { N_("Undel"), OP_UNDELETE },
   { N_("Help"),  OP_HELP },
-  { NULL }
+  { NULL,        0 }
 };
 
 
diff --git a/query.c b/query.c
index 19dbc19ae2d93e691c5c3fba6473574de888c4e8..6a3ca0790be18ae1eac4d2f453965b9c84e476b2 100644 (file)
--- a/query.c
+++ b/query.c
@@ -51,7 +51,7 @@ static struct mapping_t QueryHelp[] = {
   { N_("Make Alias"), OP_CREATE_ALIAS },
   { N_("Search"), OP_SEARCH },
   { N_("Help"),   OP_HELP },
-  { NULL }
+  { NULL,        0 }
 };
 
 static void query_menu (char *buf, size_t buflen, QUERY *results, int retbuf);
index 04ab50c27baa36d4b9174c3c682e5ccecb695a1f..398a416e1c362ca67211c82c4775024ea466baf9 100644 (file)
@@ -55,7 +55,7 @@ static struct mapping_t AttachHelp[] = {
   { N_("Pipe"),  OP_PIPE },
   { N_("Print"), OP_PRINT },
   { N_("Help"),  OP_HELP },
-  { NULL }
+  { NULL,        0 }
 };
 
 void mutt_update_tree (ATTACHPTR **idx, short idxlen)
index 3696e48031fcc2c595f61c348308778343fcbe7f..3354540fb86d35d290d81d5d044bbb3cef1d3a0f 100644 (file)
@@ -487,7 +487,7 @@ static struct mapping_t RemailerHelp[] =
   { N_("Delete"), OP_MIX_DELETE },
   { N_("Abort"),  OP_EXIT       },
   { N_("OK"),     OP_MIX_USE    },
-  { NULL }
+  { NULL,         0 }
 };