aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCalvin Morrison <mutantturkey@gmail.com>2013-11-11 13:33:15 -0500
committerCalvin Morrison <mutantturkey@gmail.com>2013-11-11 13:33:15 -0500
commit46f2d59d824805c7e6d14e84ff328a8004fd2949 (patch)
tree58543dcccc6292994d1e88da4db6e8ba0cf0101d
parent31fa3b12276608d7131aee07636b1738fc273e59 (diff)
fix printf
-rw-r--r--kmer_total_count.c2
1 files changed, 1 insertions, 1 deletions
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 {