Skip to content
Snippets Groups Projects
Commit 14e7f770 authored by Rene Brun's avatar Rene Brun
Browse files

Fix compiler warning.

git-svn-id: http://root.cern.ch/svn/root/trunk@20610 27541ba8-7e3a-0410-8455-c3a389f83636
parent a7830794
No related branches found
No related tags found
No related merge requests found
......@@ -411,7 +411,7 @@ TKey *TFileIter::NextEventKey(UInt_t eventNumber, UInt_t runNumber, const char *
while ( (key = (TKey *)SkipObjects()) ) {
if (fDirection==kIterForward) fCursorPosition++;
else fCursorPosition--;
if ( name != "*") {
if ( strcmp(name,"*")) {
thisKey.SetKey(key->GetName());
if (thisKey.GetName() < name) continue;
if (thisKey.GetName() > name) { key = 0; break; }
......
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