summaryrefslogtreecommitdiff
path: root/src/remote.cc
diff options
context:
space:
mode:
authorMaxime Coste <frrrwww@gmail.com>2013-04-11 13:57:35 +0200
committerMaxime Coste <frrrwww@gmail.com>2013-04-11 13:57:35 +0200
commit35d0d5b2eaad64a703f14e507746424d331d1c27 (patch)
tree392a5be82d2ff5c92c51cfb143628566894bdc12 /src/remote.cc
parentc699172110ec0e097b933e9ec0ecb3f0083d3c01 (diff)
exceptions: use const char* what() instead of String description()
Diffstat (limited to 'src/remote.cc')
-rw-r--r--src/remote.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/remote.cc b/src/remote.cc
index ee80ebe3..8eb3c88b 100644
--- a/src/remote.cc
+++ b/src/remote.cc
@@ -450,7 +450,7 @@ private:
}
catch (runtime_error& e)
{
- write_debug("error running command '" + m_buffer + "' : " + e.description());
+ write_debug("error running command '" + m_buffer + "' : " + e.what());
}
ClientManager::instance().redraw_clients();
close(socket);