This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "GNU Mailutils".
http://git.savannah.gnu.org/cgit/mailutils.git/commit/?id=8c834b60399ac1ef71569a4cedee25bd30b8d07c The branch, master has been updated via 8c834b60399ac1ef71569a4cedee25bd30b8d07c (commit) from c07fc42cdc414e0281b4453d31a0855af07db5a4 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 8c834b60399ac1ef71569a4cedee25bd30b8d07c Author: Sergey Poznyakoff <g...@gnu.org.ua> Date: Mon Dec 26 20:04:37 2016 +0200 Fix typecasts in sieve * libmu_sieve/sieve.y (sieve_parse): Make sure 0 is properly promoted to sieve_instr_t. ----------------------------------------------------------------------- Summary of changes: libmu_sieve/sieve.y | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libmu_sieve/sieve.y b/libmu_sieve/sieve.y index edd4c37..5bb8cb2 100644 --- a/libmu_sieve/sieve.y +++ b/libmu_sieve/sieve.y @@ -1516,7 +1516,7 @@ sieve_parse (void) mu_error (_("Optimized parse tree")); tree_dump (mu_strerr, sieve_tree, 0, mu_sieve_machine); } - mu_i_sv_code (mu_sieve_machine, (sieve_op_t) 0); + mu_i_sv_code (mu_sieve_machine, (sieve_op_t) (sieve_instr_t) 0); /* Clear location, so that mu_i_sv_locus will do its job. */ mu_sieve_machine->locus.mu_file = NULL; @@ -1524,7 +1524,7 @@ sieve_parse (void) mu_sieve_machine->locus.mu_col = 0; tree_code (mu_sieve_machine, sieve_tree); - mu_i_sv_code (mu_sieve_machine, (sieve_op_t) 0); + mu_i_sv_code (mu_sieve_machine, (sieve_op_t) (sieve_instr_t) 0); } if (rc == 0) hooks/post-receive -- GNU Mailutils _______________________________________________ Commit-mailutils mailing list Commit-mailutils@gnu.org https://lists.gnu.org/mailman/listinfo/commit-mailutils