diff options
| author | Alan Conway <aconway@apache.org> | 2013-12-05 22:49:48 +0000 |
|---|---|---|
| committer | Alan Conway <aconway@apache.org> | 2013-12-05 22:49:48 +0000 |
| commit | 837bb00b0bffe95ece7ada81f80d8792e8f2dc7b (patch) | |
| tree | 04f9d0d3ba32af249516f4034a739f4ce50b3b14 /cpp/src/qpid/sys | |
| parent | 66e9d113f8b9d35e82408a538fdaa75cad90660a (diff) | |
| download | qpid-python-837bb00b0bffe95ece7ada81f80d8792e8f2dc7b.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/qpid@1548322 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/sys')
| -rw-r--r-- | cpp/src/qpid/sys/windows/Path.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/qpid/sys/windows/Path.cpp b/cpp/src/qpid/sys/windows/Path.cpp index abcaee2574..1cb4521fde 100644 --- a/cpp/src/qpid/sys/windows/Path.cpp +++ b/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; } |
