summaryrefslogtreecommitdiff
path: root/qpid/cpp/src
diff options
context:
space:
mode:
authorAlan Conway <aconway@apache.org>2013-12-05 22:49:48 +0000
committerAlan Conway <aconway@apache.org>2013-12-05 22:49:48 +0000
commit4729c7cefc0fd58d59972eeb81f4b48fad3d7a3a (patch)
tree379f74d9e7a5201c884384b1dd45dae7318ce86b /qpid/cpp/src
parentf572da93228feabc10f2956e7ea0b3b9e253cc19 (diff)
downloadqpid-python-4729c7cefc0fd58d59972eeb81f4b48fad3d7a3a.tar.gz
QPID-5398: Minor improvement to log message.
Fix typo in previous commit. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1548322 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src')
-rw-r--r--qpid/cpp/src/qpid/sys/windows/Path.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/qpid/cpp/src/qpid/sys/windows/Path.cpp b/qpid/cpp/src/qpid/sys/windows/Path.cpp
index abcaee2574..1cb4521fde 100644
--- a/qpid/cpp/src/qpid/sys/windows/Path.cpp
+++ b/qpid/cpp/src/qpid/sys/windows/Path.cpp
@@ -38,7 +38,7 @@ namespace {
bool getStat(const std::string& path, struct _stat& s) {
if (::_stat(path.c_str(), &s)) {
if (errno == ENOENT) return false;
- throw qpid::Exception("cannot stat: " + path + ": " + strError(errno))
+ throw qpid::Exception("cannot stat: " + path + ": " + strError(errno));
}
return true;
}