From 46f2d59d824805c7e6d14e84ff328a8004fd2949 Mon Sep 17 00:00:00 2001 From: Calvin Morrison Date: Mon, 11 Nov 2013 13:33:15 -0500 Subject: fix printf --- kmer_total_count.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'kmer_total_count.c') diff --git a/kmer_total_count.c b/kmer_total_count.c index b0bf23f..8310e00 100644 --- a/kmer_total_count.c +++ b/kmer_total_count.c @@ -88,7 +88,7 @@ int main(int argc, char **argv) { if(label) { for(i = 0; i < width; i++) if(counts[i] != 0) - fprintf(stdout, "%s\t%llu\n", index_to_kmer(i, kmer),i, counts[i]); + fprintf(stdout, "%s\t%llu\n", index_to_kmer(i, kmer), counts[i]); } else { -- cgit v1.2.1