diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2017-12-11 15:23:21 +0100 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2017-12-11 15:23:21 +0100 |
commit | fa003e1facb2ec5d45a28f27a0e293701c673ec6 (patch) | |
tree | 135025de006661c3b677f568fd7e3fd0cde38dab /src/TII.cpp | |
parent | 2376bde57d44194e59b85b20411e52307b43ec2e (diff) | |
download | dabmod-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.cpp | 2 |
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); |