From bb319b5d157168740d5a86666fc197bb899b3887 Mon Sep 17 00:00:00 2001
From: Dan Goodliffe <randomdan@akira.random.lan>
Date: Mon, 1 Dec 2014 16:31:26 +0000
Subject: Use char * for logging as it can represent null

---
 project2/ice/slice2Common.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/project2/ice/slice2Common.cpp b/project2/ice/slice2Common.cpp
index 0c7df54..1b5f9ee 100644
--- a/project2/ice/slice2Common.cpp
+++ b/project2/ice/slice2Common.cpp
@@ -35,7 +35,7 @@ Slice2Common::FunctionBegin(Slice::OperationPtr o)
 	fprintf(code, "ice @ %%p\", \n");
 	fprintf(code, "\t\t\t\t\t\t\t\t__PRETTY_FUNCTION__, ");
 	BOOST_FOREACH(const auto & p, o->parameters()) {
-		fprintf(code, "%s(ec).as<std::string>(), ", p->name().c_str());
+		fprintf(code, "%s(ec).as<const char *>(), ", p->name().c_str());
 	}
 	fprintf(code, "ice);\n");
 
-- 
cgit v1.2.3