File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
EventFilter/Utilities/src Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -4,12 +4,12 @@ namespace evf {
44 namespace evtn {
55
66 bool daq_board_sense (const unsigned char *p) {
7- return (*(unsigned int *)(p + FEDHeader::length + DAQ_BOARDID_OFFSET * SLINK_WORD_SIZE / 2 ) >>
7+ return (*(const unsigned int *)(p + FEDHeader::length + DAQ_BOARDID_OFFSET * SLINK_WORD_SIZE / 2 ) >>
88 DAQ_BOARDID_SHIFT) == DAQ_BOARDID_VALUE;
99 }
1010
1111 bool gtpe_board_sense (const unsigned char *p) {
12- return (*(unsigned int *)(p + GTPE_BOARDID_OFFSET * SLINK_WORD_SIZE / 2 ) >> GTPE_BOARDID_SHIFT) != 0 ;
12+ return (*(const unsigned int *)(p + GTPE_BOARDID_OFFSET * SLINK_WORD_SIZE / 2 ) >> GTPE_BOARDID_SHIFT) != 0 ;
1313 }
1414
1515 bool evm_board_sense (const unsigned char *p, size_t size) {
You can’t perform that action at this time.
0 commit comments