diff options
author | Stephen D. Huston <shuston@apache.org> | 2009-10-29 23:58:39 +0000 |
---|---|---|
committer | Stephen D. Huston <shuston@apache.org> | 2009-10-29 23:58:39 +0000 |
commit | 4b985ac91b6c149197890de7bdd20a1c0652c624 (patch) | |
tree | 9ceebace46aa3940f5192d46c0312a2d987ce588 | |
parent | 1439f10f1f98edc05a12c64b44005f9c2fbc124e (diff) | |
download | qpid-python-4b985ac91b6c149197890de7bdd20a1c0652c624.tar.gz |
Remove extraneous space from exception message.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@831160 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | cpp/src/qpid/framing/FieldTable.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/qpid/framing/FieldTable.cpp b/cpp/src/qpid/framing/FieldTable.cpp index 255a3b74a4..0a21bb2f35 100644 --- a/cpp/src/qpid/framing/FieldTable.cpp +++ b/cpp/src/qpid/framing/FieldTable.cpp @@ -218,7 +218,7 @@ void FieldTable::decode(Buffer& buffer){ if (len) { uint32_t available = buffer.available(); if (available < len) - throw IllegalArgumentException(QPID_MSG("Not enough data for field table.")); + throw IllegalArgumentException(QPID_MSG("Not enough data for field table.")); uint32_t count = buffer.getLong(); uint32_t leftover = available - len; while(buffer.available() > leftover && count--){ |