Skip to content

Commit bd0535f

Browse files
committed
fix parentheses
1 parent 6c020e6 commit bd0535f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

otsdaq-mu2e-crv/FEInterfaces/ROCCosmicRayVetoInterface_interface.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1718,7 +1718,7 @@ void ROCCosmicRayVetoInterface::FebIISetChannel(__ARGS__)
17181718
uint16_t value = fake ? 0x1 : 0x0;
17191719
this->writeRegister(FEBII::Status, value);
17201720
std::stringstream ostr;
1721-
ostr << "Set channel with fake=" << fake << ", wrote to 0x" << std::hex << (FEBII::FPGA[fpga] | FEBII::ChannelMapBase) << " to 0x" << std::hex << (FEBII::FPGA[fpga] | FEBII::ChannelMapBase + 16) << std::endl;
1721+
ostr << "Set channel with fake=" << fake << ", wrote to 0x" << std::hex << (FEBII::FPGA[fpga] | FEBII::ChannelMapBase) << " to 0x" << std::hex << (FEBII::FPGA[fpga] | (FEBII::ChannelMapBase + 16)) << std::endl;
17221722
__SET_ARG_OUT__("response", ostr.str());
17231723
}
17241724

0 commit comments

Comments
 (0)