summaryrefslogtreecommitdiff
path: root/qpid/cpp/src
diff options
context:
space:
mode:
authorStephen D. Huston <shuston@apache.org>2009-10-29 23:58:39 +0000
committerStephen D. Huston <shuston@apache.org>2009-10-29 23:58:39 +0000
commitaf57cf1c8e8764197a158f1c4e070067e1a286f9 (patch)
tree79bbe954512c22f56568b9191703db5902d25fe9 /qpid/cpp/src
parent3768c9985af5f37562850672b7410c095d420b42 (diff)
downloadqpid-python-af57cf1c8e8764197a158f1c4e070067e1a286f9.tar.gz
Remove extraneous space from exception message.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@831160 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src')
-rw-r--r--qpid/cpp/src/qpid/framing/FieldTable.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/qpid/cpp/src/qpid/framing/FieldTable.cpp b/qpid/cpp/src/qpid/framing/FieldTable.cpp
index 255a3b74a4..0a21bb2f35 100644
--- a/qpid/cpp/src/qpid/framing/FieldTable.cpp
+++ b/qpid/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--){