Skip to content

Commit

Permalink
fixed const cast issue
Browse files Browse the repository at this point in the history
  • Loading branch information
cferraio committed Nov 20, 2015
1 parent 8156022 commit 1b2649d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion EventFilter/CastorRawToDigi/src/ZdcUnpacker.cc
Expand Up @@ -213,7 +213,7 @@ void ZdcUnpacker::unpack(const FEDRawData& raw, const CastorElectronicsMap& emap

//////////////////////////////////////////////
qie_begin=(const HcalQIESample*)daq_first;
qie_end=(HcalQIESample*)(daq_last+1); // one beyond last..
qie_end=(const HcalQIESample*)(daq_last+1); // one beyond last..

for (qie_work=qie_begin; qie_work!=qie_end;) {
if (qie_work->raw()==0xFFFF) {
Expand Down

0 comments on commit 1b2649d

Please sign in to comment.