summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2020-05-20 09:54:51 +0200
committerJohnny Willemsen <jwillemsen@remedy.nl>2020-05-20 09:54:51 +0200
commit4d603bcaa034c0ee27c12eae4b53ac62a3e139ee (patch)
treed9d54f00c64e8d15b0729044cd6d027f1226f21b
parenta9f9d42feadc888d2d32279283c7ef0a78f3d7a7 (diff)
downloadATCD-4d603bcaa034c0ee27c12eae4b53ac62a3e139ee.tar.gz
Removed const again, variable is changed
* ACE/ace/OS_NS_stropts.cpp:
-rw-r--r--ACE/ace/OS_NS_stropts.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ACE/ace/OS_NS_stropts.cpp b/ACE/ace/OS_NS_stropts.cpp
index a3317cb6207..bdcd3317c7f 100644
--- a/ACE/ace/OS_NS_stropts.cpp
+++ b/ACE/ace/OS_NS_stropts.cpp
@@ -59,7 +59,7 @@ ACE_OS::ioctl (ACE_HANDLE socket,
if (io_control_code == SIO_SET_QOS)
{
QOS qos;
- unsigned long const qos_len = sizeof (QOS);
+ unsigned long qos_len = sizeof (QOS);
qos.SendingFlowspec = *(ace_qos.sending_flowspec ());
qos.ReceivingFlowspec = *(ace_qos.receiving_flowspec ());