summaryrefslogtreecommitdiffstats
path: root/ingen/client/SocketClient.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'ingen/client/SocketClient.hpp')
-rw-r--r--ingen/client/SocketClient.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/ingen/client/SocketClient.hpp b/ingen/client/SocketClient.hpp
index bce5ab38..092ef9d2 100644
--- a/ingen/client/SocketClient.hpp
+++ b/ingen/client/SocketClient.hpp
@@ -57,8 +57,8 @@ public:
SPtr<Raul::Socket> sock(new Raul::Socket(type));
if (!sock->connect(uri)) {
- world.log().error(fmt("Failed to connect <%1%> (%2%)\n")
- % sock->uri() % strerror(errno));
+ world.log().error("Failed to connect <%1%> (%2%)\n",
+ sock->uri(), strerror(errno));
return SPtr<Interface>();
}
return SPtr<Interface>(new SocketClient(world, uri, sock, respondee));