aboutsummaryrefslogtreecommitdiffstats
path: root/src/TII.cpp
diff options
context:
space:
mode:
authorMatthias P. Braendli <matthias.braendli@mpb.li>2017-12-11 15:23:21 +0100
committerMatthias P. Braendli <matthias.braendli@mpb.li>2017-12-11 15:23:21 +0100
commitfa003e1facb2ec5d45a28f27a0e293701c673ec6 (patch)
tree135025de006661c3b677f568fd7e3fd0cde38dab /src/TII.cpp
parent2376bde57d44194e59b85b20411e52307b43ec2e (diff)
downloaddabmod-fa003e1facb2ec5d45a28f27a0e293701c673ec6.tar.gz
dabmod-fa003e1facb2ec5d45a28f27a0e293701c673ec6.tar.bz2
dabmod-fa003e1facb2ec5d45a28f27a0e293701c673ec6.zip
Replace legacy bzero() by memset()
Diffstat (limited to 'src/TII.cpp')
-rw-r--r--src/TII.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/TII.cpp b/src/TII.cpp
index 4710ed4..a30d7f6 100644
--- a/src/TII.cpp
+++ b/src/TII.cpp
@@ -190,7 +190,7 @@ int TII::process(Buffer* dataIn, Buffer* dataOut)
}
dataOut->setLength(m_carriers * sizeof(complexf));
- bzero(dataOut->getData(), dataOut->getLength());
+ memset(dataOut->getData(), 0, dataOut->getLength());
if (m_conf.enable and m_insert) {
boost::mutex::scoped_lock lock(m_enabled_carriers_mutex);