version bump, fixed ackAny > queueSize bug

This commit is contained in:
Matej Sekoranja
2015-12-16 10:17:56 +01:00
parent 0f87b082a3
commit 8fa82897e1
2 changed files with 3 additions and 3 deletions

View File

@@ -2431,7 +2431,7 @@ namespace epics {
ss << pvString->get();
ss >> size;
if (size > 0)
m_ackAny = size;
m_ackAny = (m_ackAny <= m_queueSize) ? size : m_queueSize;
}
}
}