Fixed gcc warnings

This commit is contained in:
Celine Mercier
2019-09-25 11:38:00 +02:00
parent c3b9e46291
commit 44517db51f
11 changed files with 49 additions and 69 deletions

View File

@ -401,7 +401,8 @@ int obi_lcs_align_one_column(const char* dms_name,
index_t seq_count;
index_t id1_idx, id2_idx;
index_t seq1_idx, seq2_idx;
int count1, count2;
int count1 = 0;
int count2 = 0;
double score;
int lcs_length;
int ali_length;
@ -697,7 +698,8 @@ int obi_lcs_align_two_columns(const char* dms_name,
index_t seq2_count;
index_t id1_idx, id2_idx;
index_t seq1_idx, seq2_idx;
int count1, count2;
int count1 = 0;
int count2 = 0;
double score;
int lcs_length;
int ali_length;