Commit 8b305ed8 8b305ed86353318d3e3422b7980739fb885ddee5 by Sergey Poznyakoff

Update

1 parent b78944bb
......@@ -204,7 +204,7 @@ regex_comparator (void *item, void *data)
mu_sieve_error (d->mach,
_("%d: cannot compile regular expression \"%s\""),
mu_sieve_get_message_num (d->mach),
item);
(char*) item);
return 0;
}
rc = regexec (&preg, d->email, 0, NULL, 0) == 0;
......
......@@ -287,7 +287,7 @@ sieve_run (mu_sieve_machine_t mach)
mu_sieve_log_action (mach, "IMPLICIT KEEP", NULL);
if (INSTR_DEBUG (mach))
mu_sieve_debug (mach, "%4lu: STOP\n", mach->pc);
mu_sieve_debug (mach, "%4lu: STOP\n", (unsigned long) mach->pc);
return 0;
}
......