summaryrefslogtreecommitdiffstats
path: root/src/socket/SocketReader.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/socket/SocketReader.cpp')
-rw-r--r--src/socket/SocketReader.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/socket/SocketReader.cpp b/src/socket/SocketReader.cpp
index d3e6affc..458032c5 100644
--- a/src/socket/SocketReader.cpp
+++ b/src/socket/SocketReader.cpp
@@ -94,7 +94,7 @@ SocketReader::run()
// Open socket as a FILE for reading directly with serd
FILE* f = fdopen(_socket->fd(), "r");
if (!f) {
- _world.log().error(Raul::fmt("Failed to open connection (%1%)\n")
+ _world.log().error(fmt("Failed to open connection (%1%)\n")
% strerror(errno));
// Connection gone, exit
_socket.reset();
@@ -159,7 +159,7 @@ SocketReader::run()
if (st == SERD_FAILURE || !_msg_node) {
continue; // Read nothing, e.g. just whitespace
} else if (st) {
- _world.log().error(Raul::fmt("Read error: %1%\n")
+ _world.log().error(fmt("Read error: %1%\n")
% serd_strerror(st));
continue;
}