* silence some more compiler warnings

This commit is contained in:
djcb 2012-06-10 12:21:41 +03:00
parent aa8c86abfa
commit 5946499218
2 changed files with 12 additions and 6 deletions

View File

@ -159,7 +159,8 @@ store your org-contacts."
(list (list key "contacts" 'entry
(list 'file mu4e-org-contacts-file) blurb)))))
(message "%S" org-capture-templates)
(org-capture nil key)))
(when (fboundp 'org-capture)
(org-capture nil key))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

View File

@ -96,6 +96,7 @@ print_expr (const char* frm, ...)
{
char *expr;
va_list ap;
ssize_t rv;
size_t exprlen, lenlen;
char cookie[16];
static int outfd = 0;
@ -120,9 +121,14 @@ print_expr (const char* frm, ...)
/* write the cookie, ie.
* COOKIE_PRE <len-of-following-sexp-in-hex> COOKIE_POST
*/
(void)write (outfd, cookie, lenlen + 2);
(void)write (outfd, expr, exprlen);
(void)write (outfd, "\n", 1);
rv = write (outfd, cookie, lenlen + 2);
if (rv != -1)
rv = write (outfd, expr, exprlen);
if (rv != -1)
rv = write (outfd, "\n", 1);
if (rv == -1)
g_warning ("%s: write() failed: %s",
__FUNCTION__, strerror(errno));
g_free (expr);
}
@ -699,6 +705,7 @@ get_find_params (GSList *args, gboolean *threads, MuMsgFieldId *sortfield,
/* whether to show threads or not */
*threads = get_bool_from_args (args, "threads", TRUE, NULL);
*reverse = get_bool_from_args (args, "reverse", TRUE, NULL);
/* field to sort by */
sortfieldstr = get_string_from_args (args, "sortfield", TRUE, NULL);
@ -713,8 +720,6 @@ get_find_params (GSList *args, gboolean *threads, MuMsgFieldId *sortfield,
} else
*sortfield = MU_MSG_FIELD_ID_DATE;
*reverse = get_bool_from_args (args, "reverse", TRUE, NULL);
return MU_OK;
}