From 07869134d6ec85a307f47d04bd0de889721e15ee Mon Sep 17 00:00:00 2001 From: Erik Frojdh Date: Thu, 23 Jul 2020 08:19:08 +0200 Subject: [PATCH] removed additional buggy signatures --- slsDetectorSoftware/src/Module.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/slsDetectorSoftware/src/Module.cpp b/slsDetectorSoftware/src/Module.cpp index 50f43c85b..326daf0c4 100644 --- a/slsDetectorSoftware/src/Module.cpp +++ b/slsDetectorSoftware/src/Module.cpp @@ -932,7 +932,7 @@ void Module::setFileIndex(int64_t file_index) { } void Module::incrementFileIndex() { - sendToReceiver(F_INCREMENT_FILE_INDEX, nullptr, nullptr); + sendToReceiver(F_INCREMENT_FILE_INDEX); } bool Module::getFileWrite() { @@ -2273,7 +2273,7 @@ void Module::copyDetectorServer(const std::string &fname, } void Module::rebootController() { - sendToDetector(F_REBOOT_CONTROLLER, nullptr, nullptr); + sendToDetector(F_REBOOT_CONTROLLER); LOG(logINFO) << "Controller rebooted successfully!"; } @@ -2817,7 +2817,7 @@ void Module::checkReceiverVersionCompatibility() { } void Module::restreamStopFromReceiver() { - sendToReceiver(F_RESTREAM_STOP_FROM_RECEIVER, nullptr, nullptr); + sendToReceiver(F_RESTREAM_STOP_FROM_RECEIVER); } int Module::sendModule(sls_detector_module *myMod, sls::ClientSocket &client) {