From f682537abf93fcbc1d91320ba256bd8389f5d84d Mon Sep 17 00:00:00 2001 From: Calvin Morrison Date: Wed, 11 Sep 2013 09:45:13 -0400 Subject: use right types --- kmer_total_count.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'kmer_total_count.c') 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) { -- cgit v1.2.1