From: Heiko Schlittermann (HS12-RIPE) Date: Fri, 3 Jun 2016 15:32:55 +0000 (+0200) Subject: Fix compiler warning/error on set_process_info(sprintf()) X-Git-Tag: exim-4_88_RC1~83 X-Git-Url: https://git.exim.org/exim.git/commitdiff_plain/4d146046d9a82339d26c6be230fe1480a72b8bee Fix compiler warning/error on set_process_info(sprintf()) --- diff --git a/src/src/exim.c b/src/src/exim.c index 08ceab7e1..01770df73 100644 --- a/src/src/exim.c +++ b/src/src/exim.c @@ -4683,8 +4683,7 @@ if (queue_interval == 0 && !daemon_listen) (stop_queue_run_id == NULL)? US"" : US" stopping at ", (stop_queue_run_id == NULL)? US"" : stop_queue_run_id); if (*queue_name) - set_process_info(CS string_sprintf( - "running the '%s' queue (single queue run)", queue_name)); + set_process_info("running the '%s' queue (single queue run)", queue_name); else set_process_info("running the queue (single queue run)"); queue_run(start_queue_run_id, stop_queue_run_id, FALSE);