Commit 8b305ed8 8b305ed86353318d3e3422b7980739fb885ddee5 by Sergey Poznyakoff

Update

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