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) {