r829: killed a harmless gcc warning

This commit is contained in:
Heng Li 2014-09-15 23:33:22 -04:00
parent 5d26ab0ee3
commit 624687b072
2 changed files with 2 additions and 2 deletions

View File

@ -1151,7 +1151,7 @@ void mem_process_seqs(const mem_opt_t *opt, const bwt_t *bwt, const bntseq_t *bn
worker_t w;
mem_pestat_t pes[4];
double ctime, rtime;
int i, has_alt = 0;
int i;
for (i = 0; i < bns->n_seqs; ++i)
if (bns->anns[i].is_alt) has_alt = 1;

2
main.c
View File

@ -4,7 +4,7 @@
#include "utils.h"
#ifndef PACKAGE_VERSION
#define PACKAGE_VERSION "0.7.10-r828-dirty"
#define PACKAGE_VERSION "0.7.10-r829-dirty"
#endif
int bwa_fa2pac(int argc, char *argv[]);