Skip to content

Commit

Permalink
fix mean length overflow
Browse files Browse the repository at this point in the history
  • Loading branch information
sfchen committed Jun 27, 2018
1 parent 567d868 commit dda339b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/stats.h
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ class Stats{
long mKmerMax;
long mKmerMin;
int mKmerBufLen;
int mLengthSum;
long mLengthSum;
};

#endif

0 comments on commit dda339b

Please sign in to comment.