Skip to content

Commit

Permalink
Merge pull request #24 from hgreenlee/trunk
Browse files Browse the repository at this point in the history
Fix c2 compilation error.
  • Loading branch information
twongjirad authored Apr 5, 2019
2 parents 517ba87 + dd1736b commit 6f67d39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main/combine_ass.cc
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ int main(int argc, char** argv) {
std::string producer(argv[1]);
std::vector<larlite::storage_manager*> in_mgr_v;
size_t min_entries=1e10;
for(size_t i=0; i<(argc-2); ++i) {
for(int i=0; i<(argc-2); ++i) {
//std::cout<<"Listing files for IO " << i << std::endl;
auto in_mgr = new larlite::storage_manager(larlite::storage_manager::kREAD);
std::ifstream fin(argv[i+2]);
Expand Down

0 comments on commit 6f67d39

Please sign in to comment.