From c564653b402304ed14330feca4bcd76f26990f43 Mon Sep 17 00:00:00 2001 From: Heng Li Date: Thu, 12 Sep 2013 10:41:43 -0400 Subject: [PATCH] r416: removed a line of debugging code --- fastmap.c | 1 - main.c | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/fastmap.c b/fastmap.c index 21e47e0..05e7d7f 100644 --- a/fastmap.c +++ b/fastmap.c @@ -57,7 +57,6 @@ int main_mem(int argc, char *argv[]) opt->pen_clip5 = opt->pen_clip3 = strtol(optarg, &p, 10); if (*p != 0 && ispunct(*p) && isdigit(p[1])) opt->pen_clip3 = strtol(p+1, &p, 10); - fprintf(stderr, "%d,%d\n", opt->pen_clip5, opt->pen_clip3); } else if (c == 'R') { if ((rg_line = bwa_set_rg(optarg)) == 0) return 1; // FIXME: memory leak } else if (c == 's') opt->split_width = atoi(optarg); diff --git a/main.c b/main.c index 998719f..a215408 100644 --- a/main.c +++ b/main.c @@ -3,7 +3,7 @@ #include "utils.h" #ifndef PACKAGE_VERSION -#define PACKAGE_VERSION "0.7.5a-r415" +#define PACKAGE_VERSION "0.7.5a-r416" #endif int bwa_fa2pac(int argc, char *argv[]);