Skip to content

Commit

Permalink
Fix gcc49 warning
Browse files Browse the repository at this point in the history
  • Loading branch information
dpiparo committed Sep 29, 2015
1 parent 096d49f commit 1f617d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion proof/proof/src/TProof.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -12639,7 +12639,7 @@ Int_t TProof::AssertDataSet(TDSet *dset, TList *input,
// into parts
TString dsns( dsname.Data() ), enl;
Ssiz_t eli = dsns.Index("?enl=");
TFileCollection *fc;
TFileCollection *fc = nullptr;
if (eli != kNPOS) {
enl = dsns(eli+5, dsns.Length());
dsns.Remove(eli, dsns.Length()-eli);
Expand Down

0 comments on commit 1f617d7

Please sign in to comment.