Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Add missing else
  • Loading branch information
Berserker committed Sep 20, 2016
commit 8d802723d9968ee8ae47cc76698a6f488d507c7d
4 changes: 2 additions & 2 deletions tree/tree/src/TBranchClones.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -171,9 +171,9 @@ void TBranchClones::Init(TTree *tree, TBranch *parent, const char* name, void* p
itype = "D";
} else if (type == 11) {
itype = "b";
} if (type == 12) {
} else if (type == 12) {
itype = "s";
} if (type == 13) {
} else if (type == 13) {
itype = "i";
}

Expand Down