]> granicus.if.org Git - neomutt/commitdiff
build: fix function prototypes
authorRichard Russon <rich@flatcap.org>
Thu, 5 Jan 2017 15:12:47 +0000 (15:12 +0000)
committerRichard Russon <rich@flatcap.org>
Thu, 5 Jan 2017 16:56:31 +0000 (16:56 +0000)
16 files changed:
alias.c
attach.c
browser.c
curs_main.c
handler.c
imap/imap.c
mutt_notmuch.c
mutt_notmuch.h
muttlib.c
newsrc.c
nntp.c
pager.c
recvattach.c
recvcmd.c
send.c
thread.c

diff --git a/alias.c b/alias.c
index aa079ea8322bab76f1211b45dc91972a0ef75c36..0091ac79259cb80cdf1699e661b8dfcce64ada35 100644 (file)
--- a/alias.c
+++ b/alias.c
@@ -383,7 +383,7 @@ retry_name:
     if (safe_fsync_close(&rc) != 0)
       mutt_message ("Trouble adding alias: %s.", strerror(errno));
     else
-      mutt_message _("Alias added.");
+      mutt_message (_("Alias added."));
   }
   else
     mutt_perror (buf);
index e11a82c80600e93ba248ca0843922ed9b89e398b..ac4c33337764c45c8adba38fca9cc72d144d5b69 100644 (file)
--- a/attach.c
+++ b/attach.c
@@ -802,8 +802,9 @@ int mutt_save_attachment (FILE *fp, BODY *m, char *path, int flags, HEADER *hdr)
       return (-1);
     }
     safe_fclose (&ofp);
-    if (safe_fsync_close (&nfp) != 0) {
-      mutt_error _("Write fault!");
+    if (safe_fsync_close (&nfp) != 0)
+    {
+      mutt_error (_("Write fault!"));
       return (-1);
     }
   }
index e029e6b506c1fa90d9e7e9b8be28223396e003cf..360a0432389a561b41e1ca6c380cd45c8e3184b1 100644 (file)
--- a/browser.c
+++ b/browser.c
@@ -2002,7 +2002,7 @@ void _mutt_select_file (char *f, size_t flen, int flags, char ***files, int *num
          }
          else if (!state.entrylen)
          {
-           mutt_error _("No newsgroups match the mask");
+           mutt_error (_("No newsgroups match the mask"));
            break;
          }
 
index 9bcb52ad72cf10feb3175c40601c7c420e1e1fbe..d9d28c2e8d8976a62af94b67992f99338ca83da3 100644 (file)
@@ -912,7 +912,7 @@ int mutt_index_menu (void)
          {
            if (Context->hdrs[i]->read == 0)
            {
-             mutt_message _("New mail in this mailbox.");
+             mutt_message (_("New mail in this mailbox."));
              if (option (OPTBEEPNEW))
                beep ();
              if (NewMailCmd)
@@ -1217,7 +1217,7 @@ int mutt_index_menu (void)
            LIST *ref = CURHDR->env->references;
            if (!ref)
            {
-             mutt_error _("Article has no parent reference.");
+             mutt_error (_("Article has no parent reference."));
              break;
            }
            strfcpy (buf, ref->data, sizeof (buf));
@@ -1240,7 +1240,7 @@ int mutt_index_menu (void)
              menu->redraw = REDRAW_MOTION_RESYNCH;
            }
            else
-             mutt_error _("Message is not visible in limited view.");
+             mutt_error (_("Message is not visible in limited view."));
          }
          else
          {
@@ -1275,11 +1275,11 @@ int mutt_index_menu (void)
 
          if (!CURHDR->env->message_id)
          {
-           mutt_error _("No Message-Id. Unable to perform operation.");
+           mutt_error (_("No Message-Id. Unable to perform operation."));
            break;
          }
 
-         mutt_message _("Fetching message headers...");
+         mutt_message (_("Fetching message headers..."));
          if (!Context->id_hash)
            Context->id_hash = mutt_make_id_hash (Context);
          strfcpy (buf, CURHDR->env->message_id, sizeof (buf));
@@ -1354,7 +1354,7 @@ int mutt_index_menu (void)
          }
          else if (rc >= 0)
          {
-           mutt_error _("No deleted messages found in the thread.");
+           mutt_error (_("No deleted messages found in the thread."));
            /* Similar to OP_MAIN_ENTIRE_THREAD, keep displaying the old message, but
               update the index */
            if (menu->menu == MENU_PAGER)
@@ -1770,13 +1770,13 @@ int mutt_index_menu (void)
       {
        int oldcount  = Context->msgcount;
        if (Context->magic != MUTT_NOTMUCH) {
-         mutt_message _("No virtual folder, aborting.");
+         mutt_message (_("No virtual folder, aborting."));
          break;
        }
        CHECK_MSGCOUNT;
         CHECK_VISIBLE;
        if (nm_read_entire_thread(Context, CURHDR) < 0) {
-          mutt_message _("Failed to read thread, aborting.");
+          mutt_message (_("Failed to read thread, aborting."));
           break;
        }
        if (oldcount < Context->msgcount) {
@@ -1804,7 +1804,7 @@ int mutt_index_menu (void)
       case OP_MAIN_MODIFY_LABELS_THEN_HIDE:
       {
        if (Context->magic != MUTT_NOTMUCH) {
-         mutt_message _("No virtual folder, aborting.");
+         mutt_message (_("No virtual folder, aborting."));
          break;
        }
        CHECK_MSGCOUNT;
@@ -1812,7 +1812,7 @@ int mutt_index_menu (void)
        *buf = '\0';
        if (mutt_get_field ("Add/remove labels: ", buf, sizeof (buf), MUTT_NM_TAG) || !*buf)
        {
-          mutt_message _("No label specified, aborting.");
+          mutt_message (_("No label specified, aborting."));
           break;
         }
        if (tag)
@@ -1845,7 +1845,7 @@ int mutt_index_menu (void)
        else
        {
          if (nm_modify_message_tags(Context, CURHDR, buf)) {
-           mutt_message _("Failed to modify labels, aborting.");
+           mutt_message (_("Failed to modify labels, aborting."));
            break;
          }
          if (op == OP_MAIN_MODIFY_LABELS_THEN_HIDE)
@@ -1879,11 +1879,11 @@ int mutt_index_menu (void)
        buf[0] = '\0';
         if (mutt_get_field ("Query: ", buf, sizeof (buf), MUTT_NM_QUERY) != 0 || !buf[0])
         {
-          mutt_message _("No query, aborting.");
+          mutt_message (_("No query, aborting."));
           break;
         }
        if (!nm_uri_from_query(Context, buf, sizeof (buf)))
-         mutt_message _("Failed to create query, aborting.");
+         mutt_message (_("Failed to create query, aborting."));
        else
          main_change_folder(menu, op, buf, sizeof (buf), &oldcount, &index_hint, 0);
        break;
@@ -2684,7 +2684,7 @@ int mutt_index_menu (void)
 
         if ((Sort & SORT_MASK) != SORT_THREADS)
         {
-          mutt_error _("Threading is not enabled.");
+          mutt_error (_("Threading is not enabled."));
           break;
         }
         collapse_all (menu, 1);
@@ -2877,7 +2877,7 @@ int mutt_index_menu (void)
          mutt_message ("%d label%s changed.", rc, rc == 1 ? "" : "s");
        }
        else {
-         mutt_message _("No labels changed.");
+         mutt_message (_("No labels changed."));
        }
        break;
 
@@ -3034,7 +3034,7 @@ int mutt_index_menu (void)
        else
           /* L10N: This error is printed if <mark-message> cannot find a
              Message-ID for the currently selected message in the index. */
-         mutt_error _("No message ID to macro.");
+         mutt_error (_("No message ID to macro."));
        break;
 
       case OP_RECALL_MESSAGE:
index 014268f920c7899dfc495052146d5d44fa515469..a9fb8483bd7addb52cf4b5f876a837c06c0a6fff 100644 (file)
--- a/handler.c
+++ b/handler.c
@@ -1629,7 +1629,7 @@ static int run_decode_and_handler (BODY *b, STATE *s, handler_t handler, int pla
 #ifdef USE_FMEMOPEN
      s->fpout = open_memstream (&temp, &tempsize);
      if (!s->fpout) {
-       mutt_error _("Unable to open memory stream!");
+       mutt_error (_("Unable to open memory stream!"));
        dprint (1, (debugfile, "Can't open memory stream.\n"));
        return -1;
      }
index 52d77664e220501e35dbabcd29bae887756965bc..673e5e80a6da9f874ffebca6bfb92f9cbe24289e 100644 (file)
@@ -306,7 +306,7 @@ static int imap_check_capabilities (IMAP_DATA* idata)
   if (!(mutt_bit_isset(idata->capabilities,IMAP4)
       ||mutt_bit_isset(idata->capabilities,IMAP4REV1)))
   {
-    mutt_error _("This IMAP server is ancient. NeoMutt does not work with it.");
+    mutt_error (_("This IMAP server is ancient. NeoMutt does not work with it."));
     mutt_sleep (2);    /* pause a moment to let the user see the error */
 
     return -1;
index 7b8cccd180e27e4c4cd55e7b2179379be08c9365..ebbea401d60c118073bd04780ebba6f4e91eda65 100644 (file)
@@ -1233,7 +1233,7 @@ done:
                release_db(data);
 
        if (ctx->msgcount == data->oldmsgcount)
-               mutt_message _("No more messages in the thread.");
+               mutt_message (_("No more messages in the thread."));
 
        data->oldmsgcount = 0;
        dprint(1, (debugfile, "nm: reading entire-thread messages... done [rc=%d, count=%d]\n",
@@ -1301,19 +1301,19 @@ char *nm_uri_from_windowed_query(CONTEXT *ctx, char *buf, size_t bufsz, char *ti
        return nm_uri_from_query(ctx, buf, bufsz);
 }
 
-void nm_query_window_reset()
+void nm_query_window_reset(void)
 {
        dprint(2, (debugfile, "nm_query_window_reset ()\n"));
        NotmuchQueryWindowCurrentPosition = 0;
 }
 
-void nm_query_window_backward()
+void nm_query_window_backward(void)
 {
        NotmuchQueryWindowCurrentPosition += 1;
        dprint(2, (debugfile, "nm_query_window_backward (%d)\n", NotmuchQueryWindowCurrentPosition));
 }
 
-void nm_query_window_forward()
+void nm_query_window_forward(void)
 {
        if (NotmuchQueryWindowCurrentPosition != 0)
                NotmuchQueryWindowCurrentPosition -= 1;
index c70590a114b9eee133288ff6e505a62d08daddf6..21229c8bd7a3be517131650ffad5d5f87f6620c9 100644 (file)
@@ -17,9 +17,9 @@ int nm_modify_message_tags(CONTEXT *ctx, HEADER *hdr, char *tags);
 
 void nm_setup_windowed_query(char *buf, size_t bufsz);
 char *nm_uri_from_windowed_query(CONTEXT *ctx, char *buf, size_t bufsz, char *timebase, int duration);
-void nm_query_window_reset();
-void nm_query_window_backward();
-void nm_query_window_forward();
+void nm_query_window_reset(void);
+void nm_query_window_backward(void);
+void nm_query_window_forward(void);
 int nm_query_window_check_timebase(char *timebase);
 
 void nm_longrun_init(CONTEXT *cxt, int writable);
index d124324efe15a70b3fcd8482ab4f886201a8e139..809728b1fce871927f1332f601668ff84bf35926 100644 (file)
--- a/muttlib.c
+++ b/muttlib.c
@@ -1730,7 +1730,7 @@ int mutt_save_confirm (const char *s, struct stat *st)
 #ifdef USE_NNTP
   if (magic == MUTT_NNTP)
   {
-    mutt_error _("Can't save message to news server.");
+    mutt_error (_("Can't save message to news server."));
     return 0;
   }
 #endif
index bc2167f478f8a55af8194b6009c8c773736393a0..1cd2379f1ed3868a92a6eac8583f5b4d962bf1c9 100644 (file)
--- a/newsrc.c
+++ b/newsrc.c
@@ -554,7 +554,7 @@ static int active_get_cache (NNTP_SERVER *nserv)
   }
   nserv->newgroups_time = t;
 
-  mutt_message _("Loading list of groups from cache...");
+  mutt_message (_("Loading list of groups from cache..."));
   while (fgets (buf, sizeof (buf), fp))
     nntp_add_group (buf, nserv);
   nntp_add_group (NULL, NULL);
@@ -881,7 +881,7 @@ NNTP_SERVER *nntp_select_server (char *server, int leave_lock)
 
   if (!server || !*server)
   {
-    mutt_error _("No news server defined!");
+    mutt_error (_("No news server defined!"));
     mutt_sleep (2);
     return NULL;
   }
diff --git a/nntp.c b/nntp.c
index 9fc8147ceccc87f4bf8f60e91654fa212eef5f35..e991027110edee3ca37dc39989bb7fb6aa0b98e2 100644 (file)
--- a/nntp.c
+++ b/nntp.c
@@ -64,7 +64,7 @@
 static int nntp_connect_error (NNTP_SERVER *nserv)
 {
   nserv->status = NNTP_NONE;
-  mutt_error _("Server closed connection!");
+  mutt_error (_("Server closed connection!"));
   mutt_sleep (2);
   return -1;
 }
@@ -163,7 +163,7 @@ static int nntp_capabilities (NNTP_SERVER *nserv)
 
   mutt_socket_close (conn);
   nserv->status = NNTP_BYE;
-  mutt_error _("Server doesn't support reader mode.");
+  mutt_error (_("Server doesn't support reader mode."));
   mutt_sleep (2);
   return -1;
 }
@@ -349,7 +349,7 @@ static int nntp_auth (NNTP_SERVER *nserv)
     {
       if (!a)
       {
-       mutt_error _("No authenticators available");
+       mutt_error (_("No authenticators available"));
        mutt_sleep (2);
        break;
       }
@@ -592,7 +592,7 @@ static int nntp_auth (NNTP_SERVER *nserv)
   conn->account.flags = flags;
   if (conn->fd < 0)
   {
-    mutt_error _("Server closed connection!");
+    mutt_error (_("Server closed connection!"));
     mutt_sleep (2);
   }
   else
@@ -651,7 +651,7 @@ int nntp_open_connection (NNTP_SERVER *nserv)
     else if (nserv->hasCAPABILITIES)
     {
       mutt_socket_close (conn);
-      mutt_error _("Could not switch to reader mode.");
+      mutt_error (_("Could not switch to reader mode."));
       mutt_sleep (2);
       return -1;
     }
@@ -693,7 +693,7 @@ int nntp_open_connection (NNTP_SERVER *nserv)
        nserv->use_tls = 0;
        nserv->status = NNTP_NONE;
        mutt_socket_close (nserv->conn);
-       mutt_error _("Could not negotiate TLS connection");
+       mutt_error (_("Could not negotiate TLS connection"));
        mutt_sleep (2);
        return -1;
       }
@@ -736,7 +736,7 @@ int nntp_open_connection (NNTP_SERVER *nserv)
     if (cap > 0)
     {
       mutt_socket_close (conn);
-      mutt_error _("Could not switch to reader mode.");
+      mutt_error (_("Could not switch to reader mode."));
       mutt_sleep (2);
       return -1;
     }
@@ -1216,7 +1216,7 @@ static int nntp_fetch_headers (CONTEXT *ctx, void *hc,
       !nntp_data->deleted)
   {
     if (!ctx->quiet)
-      mutt_message _("Fetching list of articles...");
+      mutt_message (_("Fetching list of articles..."));
     if (nntp_data->nserv->hasLISTGROUPrange)
       snprintf (buf, sizeof (buf), "LISTGROUP %s %d-%d\r\n", nntp_data->group,
                first, last);
@@ -1975,7 +1975,7 @@ int nntp_check_mailbox (CONTEXT *ctx, int *index_hint)
   if (nserv->check_time + NewsPollTimeout > now)
     return 0;
 
-  mutt_message _("Checking for new messages...");
+  mutt_message (_("Checking for new messages..."));
   if (nntp_newsrc_parse (nserv) < 0)
     return -1;
 
@@ -2200,7 +2200,7 @@ int nntp_check_new_groups (NNTP_SERVER *nserv)
   /* check subscribed newsgroups for new articles */
   if (option (OPTSHOWNEWNEWS))
   {
-    mutt_message _("Checking for new messages...");
+    mutt_message (_("Checking for new messages..."));
     for (i = 0; i < nserv->groups_num; i++)
     {
       NNTP_DATA *nntp_data = nserv->groups_list[i];
@@ -2415,7 +2415,7 @@ int nntp_check_children (CONTEXT *ctx, const char *msgid)
       if (mutt_strncmp ("500", buf, 3))
        mutt_error ("XPAT: %s", buf);
       else
-       mutt_error _("Unable to find child articles because server does not support XPAT command.");
+       mutt_error (_("Unable to find child articles because server does not support XPAT command."));
     }
     return -1;
   }
diff --git a/pager.c b/pager.c
index 60a3c72253b167d108283c7045ebc1a592b377cc..777696653f05202302f37e4a8882ba90d55b3627 100644 (file)
--- a/pager.c
+++ b/pager.c
@@ -2050,7 +2050,7 @@ mutt_pager (const char *banner, const char *fname, int flags, pager_t *extra)
 
            if (h && (h->read == 0))
            {
-             mutt_message _("New mail in this mailbox.");
+             mutt_message (_("New mail in this mailbox."));
              do_new_mail = 1;
              break;
            }
@@ -3078,7 +3078,7 @@ search_next:
           mutt_message ("%d label%s changed.", rc, rc == 1 ? "" : "s");
         }
         else {
-          mutt_message _("No labels changed.");
+          mutt_message (_("No labels changed."));
         }
         break;
 
index b6fd2915e7286168091792c964f065e26b160f0d..e95fb5eb97d65d190fe7d3ce10283abf25e6aa91 100644 (file)
@@ -1145,7 +1145,7 @@ void mutt_view_attachments (HEADER *hdr)
        if (Context->magic == MUTT_NNTP)
        {
          mutt_flushinp ();
-         mutt_error _("Can't delete attachment from news server.");
+         mutt_error (_("Can't delete attachment from news server."));
          break;
        }
 #endif
index a00744decfd9981f531b87b62282f8d82b83bc13..922b0d29b7795fbcda306677acf6ea7598bba77c 100644 (file)
--- a/recvcmd.c
+++ b/recvcmd.c
@@ -781,7 +781,7 @@ attach_reply_envelope_defaults (ENVELOPE *env, ATTACHPTR **idx, short idxlen,
 
     if ((flags & SENDLISTREPLY) && !env->to)
     {
-      mutt_error _("No mailing lists found!");
+      mutt_error (_("No mailing lists found!"));
       return (-1);
     }
 
diff --git a/send.c b/send.c
index 2f0c0a16f42c579f0acd2585bc81c6cbe8efc9fd..aa98a438ef29b22e05c784b255dbb8dceb7099c4 100644 (file)
--- a/send.c
+++ b/send.c
@@ -1792,7 +1792,7 @@ main_loop:
       /* abort */
 #ifdef USE_NNTP
       if (flags & SENDNEWS)
-       mutt_message _("Article not posted.");
+       mutt_message (_("Article not posted."));
       else
 #endif
       mutt_message _("Mail not sent.");
@@ -1891,13 +1891,13 @@ main_loop:
 #ifdef USE_NNTP
   if ((flags & SENDNEWS) && !msg->env->subject)
   {
-    mutt_error _("No subject specified.");
+    mutt_error (_("No subject specified."));
     goto main_loop;
   }
 
   if ((flags & SENDNEWS) && !msg->env->newsgroups)
   {
-    mutt_error _("No newsgroup specified.");
+    mutt_error (_("No newsgroup specified."));
     goto main_loop;
   }
 #endif
@@ -1910,7 +1910,7 @@ main_loop:
     /* if the abort is automatic, print an error message */
     if (quadoption (OPT_ATTACH) == MUTT_YES)
     {
-      mutt_error _("Message contains text matching \"$attach_keyword\". Not sending.");
+      mutt_error (_("Message contains text matching \"$attach_keyword\". Not sending."));
     }
     goto main_loop;
   }
index 8f95faf5b37f1dbe594b9de96c3bcff2f704b3aa..ea18c79e409c96e07e40ab291fa1beedf7ca0e11 100644 (file)
--- a/thread.c
+++ b/thread.c
@@ -1102,15 +1102,15 @@ int mutt_parent_message (CONTEXT *ctx, HEADER *hdr, int find_root)
 
   if (!parent)
   {
-    mutt_error _("Parent message is not available.");
+    mutt_error (_("Parent message is not available."));
     return (-1);
   }
   if (!VISIBLE (parent, ctx))
   {
     if (find_root)
-      mutt_error _("Root message is not visible in this limited view.");
+      mutt_error (_("Root message is not visible in this limited view."));
     else
-      mutt_error _("Parent message is not visible in this limited view.");
+      mutt_error (_("Parent message is not visible in this limited view."));
     return (-1);
   }
   return (parent->virtual);