Skip to content

Commit

Permalink
Merge pull request #26114 from mrodozov/fix-comp-fail-CaloOnlineTools…
Browse files Browse the repository at this point in the history
…/HcalOnlineDb

Fix comp error in CaloOnlineTools/HcalOnlineDb
  • Loading branch information
cmsbuild committed Mar 12, 2019
2 parents defc586 + 5bd5759 commit 35678a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CaloOnlineTools/HcalOnlineDb/src/HcalLutManager.cc
Expand Up @@ -1563,7 +1563,7 @@ std::map<int, std::shared_ptr<LutXml> > HcalLutManager::get_brickSet_from_oracle
_connection -> terminateStatement(stmt);
//std::cout << "Query line count: " << _lines.getCount() << std::endl;
} catch (SQLException& e) {
XCEPT_RAISE(hcal::exception::ConfigurationDatabaseException,::toolbox::toString("Oracle exception : %s",e.getMessage()));
XCEPT_RAISE(hcal::exception::ConfigurationDatabaseException,::toolbox::toString("Oracle exception : %s",e.getMessage().c_str()));
}

//std::cout << lut_map.size() << std::endl;
Expand Down

0 comments on commit 35678a3

Please sign in to comment.