Skip to content

Commit cf1395a

Browse files
committed
Merge branch 'master' into clowm-integration
2 parents c4273e7 + 9b0e580 commit cf1395a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1610,7 +1610,7 @@ double min_value = numeric_limits<double>::min(); // current minimal weight repr
16101610
file_nexus.open(nexus);
16111611
// nexus format stuff
16121612
stream_nexus << "#nexus\n\nBEGIN Taxa;\nDIMENSIONS ntax=" << denom_file_count << ";\nTAXLABELS" ;
1613-
for(int i; i < denom_file_count; ++i){
1613+
for(int i = 0; i < denom_file_count; ++i){
16141614
string taxa = nexus_color::remove_extensions(denom_names[i]); // cutting off file extension
16151615
stream_nexus << "\n[" << i+1 << "] '" << taxa << "'";
16161616
}

0 commit comments

Comments
 (0)