From c044f7a980558b4012aa77a31a6dbc34ad76735b Mon Sep 17 00:00:00 2001 From: Amos Jeffries Date: Sat, 29 Nov 2008 00:51:11 +1300 Subject: [PATCH] Author: Christos Tsantilas Bug 2527: ICAP compile error with g++ 4.3.2 --- src/ICAP/AsyncJob.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ICAP/AsyncJob.cc b/src/ICAP/AsyncJob.cc index 158ddc3a50..a43614f7d2 100644 --- a/src/ICAP/AsyncJob.cc +++ b/src/ICAP/AsyncJob.cc @@ -155,7 +155,7 @@ const char *AsyncJob::status() const buf.append(" [", 2); if (stopReason != NULL) { buf.Printf("Stopped, reason:"); - buf.Printf(stopReason); + buf.Printf("%s",stopReason); } buf.Printf(" job%d]", id); buf.terminate(); -- 2.47.3