Skip to content
Snippets Groups Projects
Commit 260fb8b8 authored by scott snyder's avatar scott snyder
Browse files

MuonErrorScalingTools: Fix compilation warning.

compilation warning: misleading indentation.


Former-commit-id: 4d21abb3e46f1248c1baa8eb3c9d9be63235d353
parent cdd93c75
No related branches found
No related tags found
No related merge requests found
...@@ -169,7 +169,8 @@ Muon::MuonErrorScaleDbTool::makeInfoString(const std::string& sdet, ...@@ -169,7 +169,8 @@ Muon::MuonErrorScaleDbTool::makeInfoString(const std::string& sdet,
s1.append("* err (+) "); s1.append("* err (+) ");
sprintf(s2,"%6.3g ",errscaler[1]);s1.append(s2); sprintf(s2,"%6.3g ",errscaler[1]);s1.append(s2);
int n = nformat-s1.size(); int n = nformat-s1.size();
for(int i=0; i<n; ++i) s1.append(" "); s1.append("|"); for(int i=0; i<n; ++i) s1.append(" ");
s1.append("|");
return s1; return s1;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment