aboutsummaryrefslogtreecommitdiff
path: root/kmer_total_count.c
diff options
context:
space:
mode:
authorCalvin Morrison <mutantturkey@gmail.com>2013-09-11 09:45:13 -0400
committerCalvin Morrison <mutantturkey@gmail.com>2013-09-11 09:45:13 -0400
commitf682537abf93fcbc1d91320ba256bd8389f5d84d (patch)
tree0fedd26b76c68afbd91163d0e574bf1529ae60e5 /kmer_total_count.c
parent12fd24e056d18e9f7ee8e1e47a42e47c843c98ff (diff)
use right types
Diffstat (limited to 'kmer_total_count.c')
-rw-r--r--kmer_total_count.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/kmer_total_count.c b/kmer_total_count.c
index 3679025..48e64b5 100644
--- a/kmer_total_count.c
+++ b/kmer_total_count.c
@@ -13,9 +13,9 @@ int main(int argc, char **argv) {
char *line = NULL;
size_t len = 0;
ssize_t read;
- unsigned int i = 0;
unsigned int kmer = 0;
- unsigned int width = 0;
+ unsigned long i = 0;
+ unsigned long width = 0;
unsigned long long *counts;
if(argc != 3) {