diff --git a/DataQuality/dqm_algorithms/tools/AlgorithmHelper.cxx b/DataQuality/dqm_algorithms/tools/AlgorithmHelper.cxx
index 48012390a20558249a0c47902c924d15a062de0b..c4ee85c941160747686b86d09945250378b5771c 100644
--- a/DataQuality/dqm_algorithms/tools/AlgorithmHelper.cxx
+++ b/DataQuality/dqm_algorithms/tools/AlgorithmHelper.cxx
@@ -386,9 +386,9 @@ std::vector<int> dqm_algorithms::tools::GetBinRange(const TH1 *h, const std::map
    * The nested ternaries prevent this happening by decrementing the bin number returned by TAxis::FindBin by 1.
    */
   const int xlow    = (xmin == notFound) ? 1                 : xAxis->FindBin(xmin);
-  const int xhigh   = (xmax == notFound) ? xAxis->GetNbins() : (xAxis->GetBinLowEdge(xAxis->FindBin(xmax))== xmax) ? (xAxis->FindBin(xmax)-1) : xAxis->FindBin(xmax)
+  const int xhigh   = (xmax == notFound) ? xAxis->GetNbins() : (xAxis->GetBinLowEdge(xAxis->FindBin(xmax))== xmax) ? (xAxis->FindBin(xmax)-1) : xAxis->FindBin(xmax);
   const int ylow    = (ymin == notFound) ? 1                 : yAxis->FindBin(ymin);
-  const int yhigh   = (ymax == notFound) ? yAxis->GetNbins() : (yAxis->GetBinLowEdge(yAxis->FindBin(ymax))== ymax) ? (yAxis->FindBin(ymax)-1) : yAxis->FindBin(ymax)
+  const int yhigh   = (ymax == notFound) ? yAxis->GetNbins() : (yAxis->GetBinLowEdge(yAxis->FindBin(ymax))== ymax) ? (yAxis->FindBin(ymax)-1) : yAxis->FindBin(ymax);
 
                                                                                                                                                              
   if (xlow>xhigh) {